aws-sdk-customerprofiles 1.65.0 → 1.67.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +282 -22
- data/lib/aws-sdk-customerprofiles/client_api.rb +174 -1
- data/lib/aws-sdk-customerprofiles/types.rb +354 -0
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +85 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +96 -0
- metadata +3 -3
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -973,6 +974,24 @@ module Aws
|
|
973
974
|
) -> _CreateSegmentSnapshotResponseSuccess
|
974
975
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSegmentSnapshotResponseSuccess
|
975
976
|
|
977
|
+
interface _CreateUploadJobResponseSuccess
|
978
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUploadJobResponse]
|
979
|
+
def job_id: () -> ::String
|
980
|
+
end
|
981
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_upload_job-instance_method
|
982
|
+
def create_upload_job: (
|
983
|
+
domain_name: ::String,
|
984
|
+
display_name: ::String,
|
985
|
+
fields: Hash[::String, {
|
986
|
+
source: ::String?,
|
987
|
+
target: ::String?,
|
988
|
+
content_type: ("STRING" | "NUMBER" | "PHONE_NUMBER" | "EMAIL_ADDRESS" | "NAME")?
|
989
|
+
}],
|
990
|
+
unique_key: ::String,
|
991
|
+
?data_expiry: ::Integer
|
992
|
+
) -> _CreateUploadJobResponseSuccess
|
993
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUploadJobResponseSuccess
|
994
|
+
|
976
995
|
interface _DeleteCalculatedAttributeDefinitionResponseSuccess
|
977
996
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCalculatedAttributeDefinitionResponse]
|
978
997
|
end
|
@@ -1435,6 +1454,39 @@ module Aws
|
|
1435
1454
|
) -> _GetSimilarProfilesResponseSuccess
|
1436
1455
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSimilarProfilesResponseSuccess
|
1437
1456
|
|
1457
|
+
interface _GetUploadJobResponseSuccess
|
1458
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUploadJobResponse]
|
1459
|
+
def job_id: () -> ::String
|
1460
|
+
def display_name: () -> ::String
|
1461
|
+
def status: () -> ("CREATED" | "IN_PROGRESS" | "PARTIALLY_SUCCEEDED" | "SUCCEEDED" | "FAILED" | "STOPPED")
|
1462
|
+
def status_reason: () -> ("VALIDATION_FAILURE" | "INTERNAL_FAILURE")
|
1463
|
+
def created_at: () -> ::Time
|
1464
|
+
def completed_at: () -> ::Time
|
1465
|
+
def fields: () -> ::Hash[::String, Types::ObjectTypeField]
|
1466
|
+
def unique_key: () -> ::String
|
1467
|
+
def results_summary: () -> Types::ResultsSummary
|
1468
|
+
def data_expiry: () -> ::Integer
|
1469
|
+
end
|
1470
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_upload_job-instance_method
|
1471
|
+
def get_upload_job: (
|
1472
|
+
domain_name: ::String,
|
1473
|
+
job_id: ::String
|
1474
|
+
) -> _GetUploadJobResponseSuccess
|
1475
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUploadJobResponseSuccess
|
1476
|
+
|
1477
|
+
interface _GetUploadJobPathResponseSuccess
|
1478
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUploadJobPathResponse]
|
1479
|
+
def url: () -> ::String
|
1480
|
+
def client_token: () -> ::String
|
1481
|
+
def valid_until: () -> ::Time
|
1482
|
+
end
|
1483
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_upload_job_path-instance_method
|
1484
|
+
def get_upload_job_path: (
|
1485
|
+
domain_name: ::String,
|
1486
|
+
job_id: ::String
|
1487
|
+
) -> _GetUploadJobPathResponseSuccess
|
1488
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUploadJobPathResponseSuccess
|
1489
|
+
|
1438
1490
|
interface _GetWorkflowResponseSuccess
|
1439
1491
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowResponse]
|
1440
1492
|
def workflow_id: () -> ::String
|
@@ -1696,6 +1748,19 @@ module Aws
|
|
1696
1748
|
) -> _ListTagsForResourceResponseSuccess
|
1697
1749
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
1698
1750
|
|
1751
|
+
interface _ListUploadJobsResponseSuccess
|
1752
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListUploadJobsResponse]
|
1753
|
+
def next_token: () -> ::String
|
1754
|
+
def items: () -> ::Array[Types::UploadJobItem]
|
1755
|
+
end
|
1756
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_upload_jobs-instance_method
|
1757
|
+
def list_upload_jobs: (
|
1758
|
+
domain_name: ::String,
|
1759
|
+
?max_results: ::Integer,
|
1760
|
+
?next_token: ::String
|
1761
|
+
) -> _ListUploadJobsResponseSuccess
|
1762
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUploadJobsResponseSuccess
|
1763
|
+
|
1699
1764
|
interface _ListWorkflowsResponseSuccess
|
1700
1765
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowsResponse]
|
1701
1766
|
def items: () -> ::Array[Types::ListWorkflowsItem]
|
@@ -1912,6 +1977,26 @@ module Aws
|
|
1912
1977
|
) -> _SearchProfilesResponseSuccess
|
1913
1978
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchProfilesResponseSuccess
|
1914
1979
|
|
1980
|
+
interface _StartUploadJobResponseSuccess
|
1981
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartUploadJobResponse]
|
1982
|
+
end
|
1983
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#start_upload_job-instance_method
|
1984
|
+
def start_upload_job: (
|
1985
|
+
domain_name: ::String,
|
1986
|
+
job_id: ::String
|
1987
|
+
) -> _StartUploadJobResponseSuccess
|
1988
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartUploadJobResponseSuccess
|
1989
|
+
|
1990
|
+
interface _StopUploadJobResponseSuccess
|
1991
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopUploadJobResponse]
|
1992
|
+
end
|
1993
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#stop_upload_job-instance_method
|
1994
|
+
def stop_upload_job: (
|
1995
|
+
domain_name: ::String,
|
1996
|
+
job_id: ::String
|
1997
|
+
) -> _StopUploadJobResponseSuccess
|
1998
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopUploadJobResponseSuccess
|
1999
|
+
|
1915
2000
|
interface _TagResourceResponseSuccess
|
1916
2001
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1917
2002
|
end
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -445,6 +445,20 @@ module Aws::CustomerProfiles
|
|
445
445
|
SENSITIVE: []
|
446
446
|
end
|
447
447
|
|
448
|
+
class CreateUploadJobRequest
|
449
|
+
attr_accessor domain_name: ::String
|
450
|
+
attr_accessor display_name: ::String
|
451
|
+
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
452
|
+
attr_accessor unique_key: ::String
|
453
|
+
attr_accessor data_expiry: ::Integer
|
454
|
+
SENSITIVE: [:fields]
|
455
|
+
end
|
456
|
+
|
457
|
+
class CreateUploadJobResponse
|
458
|
+
attr_accessor job_id: ::String
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
448
462
|
class DateDimension
|
449
463
|
attr_accessor dimension_type: ("BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON")
|
450
464
|
attr_accessor values: ::Array[::String]
|
@@ -1065,6 +1079,39 @@ module Aws::CustomerProfiles
|
|
1065
1079
|
SENSITIVE: []
|
1066
1080
|
end
|
1067
1081
|
|
1082
|
+
class GetUploadJobPathRequest
|
1083
|
+
attr_accessor domain_name: ::String
|
1084
|
+
attr_accessor job_id: ::String
|
1085
|
+
SENSITIVE: []
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
class GetUploadJobPathResponse
|
1089
|
+
attr_accessor url: ::String
|
1090
|
+
attr_accessor client_token: ::String
|
1091
|
+
attr_accessor valid_until: ::Time
|
1092
|
+
SENSITIVE: []
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class GetUploadJobRequest
|
1096
|
+
attr_accessor domain_name: ::String
|
1097
|
+
attr_accessor job_id: ::String
|
1098
|
+
SENSITIVE: []
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class GetUploadJobResponse
|
1102
|
+
attr_accessor job_id: ::String
|
1103
|
+
attr_accessor display_name: ::String
|
1104
|
+
attr_accessor status: ("CREATED" | "IN_PROGRESS" | "PARTIALLY_SUCCEEDED" | "SUCCEEDED" | "FAILED" | "STOPPED")
|
1105
|
+
attr_accessor status_reason: ("VALIDATION_FAILURE" | "INTERNAL_FAILURE")
|
1106
|
+
attr_accessor created_at: ::Time
|
1107
|
+
attr_accessor completed_at: ::Time
|
1108
|
+
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
1109
|
+
attr_accessor unique_key: ::String
|
1110
|
+
attr_accessor results_summary: Types::ResultsSummary
|
1111
|
+
attr_accessor data_expiry: ::Integer
|
1112
|
+
SENSITIVE: [:fields]
|
1113
|
+
end
|
1114
|
+
|
1068
1115
|
class GetWorkflowRequest
|
1069
1116
|
attr_accessor domain_name: ::String
|
1070
1117
|
attr_accessor workflow_id: ::String
|
@@ -1444,6 +1491,19 @@ module Aws::CustomerProfiles
|
|
1444
1491
|
SENSITIVE: []
|
1445
1492
|
end
|
1446
1493
|
|
1494
|
+
class ListUploadJobsRequest
|
1495
|
+
attr_accessor domain_name: ::String
|
1496
|
+
attr_accessor max_results: ::Integer
|
1497
|
+
attr_accessor next_token: ::String
|
1498
|
+
SENSITIVE: []
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
class ListUploadJobsResponse
|
1502
|
+
attr_accessor next_token: ::String
|
1503
|
+
attr_accessor items: ::Array[Types::UploadJobItem]
|
1504
|
+
SENSITIVE: []
|
1505
|
+
end
|
1506
|
+
|
1447
1507
|
class ListWorkflowsItem
|
1448
1508
|
attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
|
1449
1509
|
attr_accessor workflow_id: ::String
|
@@ -1740,6 +1800,13 @@ module Aws::CustomerProfiles
|
|
1740
1800
|
SENSITIVE: []
|
1741
1801
|
end
|
1742
1802
|
|
1803
|
+
class ResultsSummary
|
1804
|
+
attr_accessor updated_records: ::Integer
|
1805
|
+
attr_accessor created_records: ::Integer
|
1806
|
+
attr_accessor failed_records: ::Integer
|
1807
|
+
SENSITIVE: []
|
1808
|
+
end
|
1809
|
+
|
1743
1810
|
class RuleBasedMatchingRequest
|
1744
1811
|
attr_accessor enabled: bool
|
1745
1812
|
attr_accessor matching_rules: ::Array[Types::MatchingRule]
|
@@ -1865,6 +1932,24 @@ module Aws::CustomerProfiles
|
|
1865
1932
|
SENSITIVE: []
|
1866
1933
|
end
|
1867
1934
|
|
1935
|
+
class StartUploadJobRequest
|
1936
|
+
attr_accessor domain_name: ::String
|
1937
|
+
attr_accessor job_id: ::String
|
1938
|
+
SENSITIVE: []
|
1939
|
+
end
|
1940
|
+
|
1941
|
+
class StartUploadJobResponse < Aws::EmptyStructure
|
1942
|
+
end
|
1943
|
+
|
1944
|
+
class StopUploadJobRequest
|
1945
|
+
attr_accessor domain_name: ::String
|
1946
|
+
attr_accessor job_id: ::String
|
1947
|
+
SENSITIVE: []
|
1948
|
+
end
|
1949
|
+
|
1950
|
+
class StopUploadJobResponse < Aws::EmptyStructure
|
1951
|
+
end
|
1952
|
+
|
1868
1953
|
class TagResourceRequest
|
1869
1954
|
attr_accessor resource_arn: ::String
|
1870
1955
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -2060,6 +2145,17 @@ module Aws::CustomerProfiles
|
|
2060
2145
|
SENSITIVE: []
|
2061
2146
|
end
|
2062
2147
|
|
2148
|
+
class UploadJobItem
|
2149
|
+
attr_accessor job_id: ::String
|
2150
|
+
attr_accessor display_name: ::String
|
2151
|
+
attr_accessor status: ("CREATED" | "IN_PROGRESS" | "PARTIALLY_SUCCEEDED" | "SUCCEEDED" | "FAILED" | "STOPPED")
|
2152
|
+
attr_accessor status_reason: ("VALIDATION_FAILURE" | "INTERNAL_FAILURE")
|
2153
|
+
attr_accessor created_at: ::Time
|
2154
|
+
attr_accessor completed_at: ::Time
|
2155
|
+
attr_accessor data_expiry: ::Integer
|
2156
|
+
SENSITIVE: []
|
2157
|
+
end
|
2158
|
+
|
2063
2159
|
class ValueRange
|
2064
2160
|
attr_accessor start: ::Integer
|
2065
2161
|
attr_accessor end: ::Integer
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.67.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|