aws-sdk-customerprofiles 1.53.0 → 1.54.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +12 -1
- data/lib/aws-sdk-customerprofiles/client_api.rb +4 -0
- data/lib/aws-sdk-customerprofiles/types.rb +28 -4
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13bdc587b55072bec8a9919bf15d254ba508fb0dc16ada5beb6a42d018261e15
|
4
|
+
data.tar.gz: 5ab8c1137e2fe7140f56a6b19a5b22805d57c841c2ac985fb3d045b2a8fb35ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a5da9c62388cfe8195bc7be264cb57a44d45f6ccbddacc4c0e10bed46f158600912ca29c198d5de20e58a2061a514fea4a978191149ea6be31a0fd7e47c6bca
|
7
|
+
data.tar.gz: 7353a278048df243c5df9805029a048a7681b7e5d303f0c3a744e687b2b3528002edd1e8de9c709d537252f026fc8198fa437c48e01f254e7fc94f9cf5e64091
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.54.0 (2024-09-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introduces optional RoleArn parameter for PutIntegration request and includes RoleArn in the response of PutIntegration, GetIntegration and ListIntegrations
|
8
|
+
|
4
9
|
1.53.0 (2024-09-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.0
|
@@ -1892,6 +1892,7 @@ module Aws::CustomerProfiles
|
|
1892
1892
|
# * {Types::GetIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
1893
1893
|
# * {Types::GetIntegrationResponse#workflow_id #workflow_id} => String
|
1894
1894
|
# * {Types::GetIntegrationResponse#is_unstructured #is_unstructured} => Boolean
|
1895
|
+
# * {Types::GetIntegrationResponse#role_arn #role_arn} => String
|
1895
1896
|
#
|
1896
1897
|
# @example Request syntax with placeholder values
|
1897
1898
|
#
|
@@ -1913,6 +1914,7 @@ module Aws::CustomerProfiles
|
|
1913
1914
|
# resp.object_type_names["string1To255"] #=> String
|
1914
1915
|
# resp.workflow_id #=> String
|
1915
1916
|
# resp.is_unstructured #=> Boolean
|
1917
|
+
# resp.role_arn #=> String
|
1916
1918
|
#
|
1917
1919
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegration AWS API Documentation
|
1918
1920
|
#
|
@@ -2352,6 +2354,7 @@ module Aws::CustomerProfiles
|
|
2352
2354
|
# resp.items[0].object_type_names["string1To255"] #=> String
|
2353
2355
|
# resp.items[0].workflow_id #=> String
|
2354
2356
|
# resp.items[0].is_unstructured #=> Boolean
|
2357
|
+
# resp.items[0].role_arn #=> String
|
2355
2358
|
# resp.next_token #=> String
|
2356
2359
|
#
|
2357
2360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListAccountIntegrations AWS API Documentation
|
@@ -2642,6 +2645,7 @@ module Aws::CustomerProfiles
|
|
2642
2645
|
# resp.items[0].object_type_names["string1To255"] #=> String
|
2643
2646
|
# resp.items[0].workflow_id #=> String
|
2644
2647
|
# resp.items[0].is_unstructured #=> Boolean
|
2648
|
+
# resp.items[0].role_arn #=> String
|
2645
2649
|
# resp.next_token #=> String
|
2646
2650
|
#
|
2647
2651
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrations AWS API Documentation
|
@@ -3067,6 +3071,10 @@ module Aws::CustomerProfiles
|
|
3067
3071
|
# `ShopifyUpdateDraftOrders`, `ShopifyCreateOrders`, and
|
3068
3072
|
# `ShopifyUpdatedOrders`.
|
3069
3073
|
#
|
3074
|
+
# @option params [String] :role_arn
|
3075
|
+
# The Amazon Resource Name (ARN) of the IAM role. The Integration uses
|
3076
|
+
# this role to make Customer Profiles requests on your behalf.
|
3077
|
+
#
|
3070
3078
|
# @return [Types::PutIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3071
3079
|
#
|
3072
3080
|
# * {Types::PutIntegrationResponse#domain_name #domain_name} => String
|
@@ -3078,6 +3086,7 @@ module Aws::CustomerProfiles
|
|
3078
3086
|
# * {Types::PutIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
3079
3087
|
# * {Types::PutIntegrationResponse#workflow_id #workflow_id} => String
|
3080
3088
|
# * {Types::PutIntegrationResponse#is_unstructured #is_unstructured} => Boolean
|
3089
|
+
# * {Types::PutIntegrationResponse#role_arn #role_arn} => String
|
3081
3090
|
#
|
3082
3091
|
# @example Request syntax with placeholder values
|
3083
3092
|
#
|
@@ -3154,6 +3163,7 @@ module Aws::CustomerProfiles
|
|
3154
3163
|
# object_type_names: {
|
3155
3164
|
# "string1To255" => "typeName",
|
3156
3165
|
# },
|
3166
|
+
# role_arn: "RoleArn",
|
3157
3167
|
# })
|
3158
3168
|
#
|
3159
3169
|
# @example Response structure
|
@@ -3169,6 +3179,7 @@ module Aws::CustomerProfiles
|
|
3169
3179
|
# resp.object_type_names["string1To255"] #=> String
|
3170
3180
|
# resp.workflow_id #=> String
|
3171
3181
|
# resp.is_unstructured #=> Boolean
|
3182
|
+
# resp.role_arn #=> String
|
3172
3183
|
#
|
3173
3184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegration AWS API Documentation
|
3174
3185
|
#
|
@@ -4078,7 +4089,7 @@ module Aws::CustomerProfiles
|
|
4078
4089
|
tracer: tracer
|
4079
4090
|
)
|
4080
4091
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
4081
|
-
context[:gem_version] = '1.
|
4092
|
+
context[:gem_version] = '1.54.0'
|
4082
4093
|
Seahorse::Client::Request.new(handlers, context)
|
4083
4094
|
end
|
4084
4095
|
|
@@ -778,6 +778,7 @@ module Aws::CustomerProfiles
|
|
778
778
|
GetIntegrationResponse.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
779
779
|
GetIntegrationResponse.add_member(:workflow_id, Shapes::ShapeRef.new(shape: string1To255, location_name: "WorkflowId"))
|
780
780
|
GetIntegrationResponse.add_member(:is_unstructured, Shapes::ShapeRef.new(shape: optionalBoolean, location_name: "IsUnstructured"))
|
781
|
+
GetIntegrationResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
781
782
|
GetIntegrationResponse.struct_class = Types::GetIntegrationResponse
|
782
783
|
|
783
784
|
GetMatchesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: token, location: "querystring", location_name: "next-token"))
|
@@ -984,6 +985,7 @@ module Aws::CustomerProfiles
|
|
984
985
|
ListIntegrationItem.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
985
986
|
ListIntegrationItem.add_member(:workflow_id, Shapes::ShapeRef.new(shape: string1To255, location_name: "WorkflowId"))
|
986
987
|
ListIntegrationItem.add_member(:is_unstructured, Shapes::ShapeRef.new(shape: optionalBoolean, location_name: "IsUnstructured"))
|
988
|
+
ListIntegrationItem.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
987
989
|
ListIntegrationItem.struct_class = Types::ListIntegrationItem
|
988
990
|
|
989
991
|
ListIntegrationsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
|
@@ -1191,6 +1193,7 @@ module Aws::CustomerProfiles
|
|
1191
1193
|
PutIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
1192
1194
|
PutIntegrationRequest.add_member(:flow_definition, Shapes::ShapeRef.new(shape: FlowDefinition, location_name: "FlowDefinition"))
|
1193
1195
|
PutIntegrationRequest.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
1196
|
+
PutIntegrationRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
1194
1197
|
PutIntegrationRequest.struct_class = Types::PutIntegrationRequest
|
1195
1198
|
|
1196
1199
|
PutIntegrationResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "DomainName"))
|
@@ -1202,6 +1205,7 @@ module Aws::CustomerProfiles
|
|
1202
1205
|
PutIntegrationResponse.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
1203
1206
|
PutIntegrationResponse.add_member(:workflow_id, Shapes::ShapeRef.new(shape: string1To255, location_name: "WorkflowId"))
|
1204
1207
|
PutIntegrationResponse.add_member(:is_unstructured, Shapes::ShapeRef.new(shape: optionalBoolean, location_name: "IsUnstructured"))
|
1208
|
+
PutIntegrationResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
1205
1209
|
PutIntegrationResponse.struct_class = Types::PutIntegrationResponse
|
1206
1210
|
|
1207
1211
|
PutProfileObjectRequest.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, required: true, location_name: "ObjectTypeName"))
|
@@ -2269,6 +2269,11 @@ module Aws::CustomerProfiles
|
|
2269
2269
|
# equals \_unstructured via API/CLI in flowDefinition.
|
2270
2270
|
# @return [Boolean]
|
2271
2271
|
#
|
2272
|
+
# @!attribute [rw] role_arn
|
2273
|
+
# The Amazon Resource Name (ARN) of the IAM role. The Integration uses
|
2274
|
+
# this role to make Customer Profiles requests on your behalf.
|
2275
|
+
# @return [String]
|
2276
|
+
#
|
2272
2277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegrationResponse AWS API Documentation
|
2273
2278
|
#
|
2274
2279
|
class GetIntegrationResponse < Struct.new(
|
@@ -2280,7 +2285,8 @@ module Aws::CustomerProfiles
|
|
2280
2285
|
:tags,
|
2281
2286
|
:object_type_names,
|
2282
2287
|
:workflow_id,
|
2283
|
-
:is_unstructured
|
2288
|
+
:is_unstructured,
|
2289
|
+
:role_arn)
|
2284
2290
|
SENSITIVE = []
|
2285
2291
|
include Aws::Structure
|
2286
2292
|
end
|
@@ -3265,6 +3271,11 @@ module Aws::CustomerProfiles
|
|
3265
3271
|
# equals \_unstructured via API/CLI in flowDefinition.
|
3266
3272
|
# @return [Boolean]
|
3267
3273
|
#
|
3274
|
+
# @!attribute [rw] role_arn
|
3275
|
+
# The Amazon Resource Name (ARN) of the IAM role. The Integration uses
|
3276
|
+
# this role to make Customer Profiles requests on your behalf.
|
3277
|
+
# @return [String]
|
3278
|
+
#
|
3268
3279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrationItem AWS API Documentation
|
3269
3280
|
#
|
3270
3281
|
class ListIntegrationItem < Struct.new(
|
@@ -3276,7 +3287,8 @@ module Aws::CustomerProfiles
|
|
3276
3287
|
:tags,
|
3277
3288
|
:object_type_names,
|
3278
3289
|
:workflow_id,
|
3279
|
-
:is_unstructured
|
3290
|
+
:is_unstructured,
|
3291
|
+
:role_arn)
|
3280
3292
|
SENSITIVE = []
|
3281
3293
|
include Aws::Structure
|
3282
3294
|
end
|
@@ -4196,6 +4208,11 @@ module Aws::CustomerProfiles
|
|
4196
4208
|
# `ShopifyCreateOrders`, and `ShopifyUpdatedOrders`.
|
4197
4209
|
# @return [Hash<String,String>]
|
4198
4210
|
#
|
4211
|
+
# @!attribute [rw] role_arn
|
4212
|
+
# The Amazon Resource Name (ARN) of the IAM role. The Integration uses
|
4213
|
+
# this role to make Customer Profiles requests on your behalf.
|
4214
|
+
# @return [String]
|
4215
|
+
#
|
4199
4216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationRequest AWS API Documentation
|
4200
4217
|
#
|
4201
4218
|
class PutIntegrationRequest < Struct.new(
|
@@ -4204,7 +4221,8 @@ module Aws::CustomerProfiles
|
|
4204
4221
|
:object_type_name,
|
4205
4222
|
:tags,
|
4206
4223
|
:flow_definition,
|
4207
|
-
:object_type_names
|
4224
|
+
:object_type_names,
|
4225
|
+
:role_arn)
|
4208
4226
|
SENSITIVE = [:flow_definition]
|
4209
4227
|
include Aws::Structure
|
4210
4228
|
end
|
@@ -4254,6 +4272,11 @@ module Aws::CustomerProfiles
|
|
4254
4272
|
# equals \_unstructured via API/CLI in flowDefinition.
|
4255
4273
|
# @return [Boolean]
|
4256
4274
|
#
|
4275
|
+
# @!attribute [rw] role_arn
|
4276
|
+
# The Amazon Resource Name (ARN) of the IAM role. The Integration uses
|
4277
|
+
# this role to make Customer Profiles requests on your behalf.
|
4278
|
+
# @return [String]
|
4279
|
+
#
|
4257
4280
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationResponse AWS API Documentation
|
4258
4281
|
#
|
4259
4282
|
class PutIntegrationResponse < Struct.new(
|
@@ -4265,7 +4288,8 @@ module Aws::CustomerProfiles
|
|
4265
4288
|
:tags,
|
4266
4289
|
:object_type_names,
|
4267
4290
|
:workflow_id,
|
4268
|
-
:is_unstructured
|
4291
|
+
:is_unstructured,
|
4292
|
+
:role_arn)
|
4269
4293
|
SENSITIVE = []
|
4270
4294
|
include Aws::Structure
|
4271
4295
|
end
|
data/sig/client.rbs
CHANGED
@@ -617,6 +617,7 @@ module Aws
|
|
617
617
|
def object_type_names: () -> ::Hash[::String, ::String]
|
618
618
|
def workflow_id: () -> ::String
|
619
619
|
def is_unstructured: () -> bool
|
620
|
+
def role_arn: () -> ::String
|
620
621
|
end
|
621
622
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_integration-instance_method
|
622
623
|
def get_integration: (
|
@@ -957,6 +958,7 @@ module Aws
|
|
957
958
|
def object_type_names: () -> ::Hash[::String, ::String]
|
958
959
|
def workflow_id: () -> ::String
|
959
960
|
def is_unstructured: () -> bool
|
961
|
+
def role_arn: () -> ::String
|
960
962
|
end
|
961
963
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#put_integration-instance_method
|
962
964
|
def put_integration: (
|
@@ -1025,7 +1027,8 @@ module Aws
|
|
1025
1027
|
}?
|
1026
1028
|
}
|
1027
1029
|
},
|
1028
|
-
?object_type_names: Hash[::String, ::String]
|
1030
|
+
?object_type_names: Hash[::String, ::String],
|
1031
|
+
?role_arn: ::String
|
1029
1032
|
) -> _PutIntegrationResponseSuccess
|
1030
1033
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
|
1031
1034
|
|
data/sig/types.rbs
CHANGED
@@ -578,6 +578,7 @@ module Aws::CustomerProfiles
|
|
578
578
|
attr_accessor object_type_names: ::Hash[::String, ::String]
|
579
579
|
attr_accessor workflow_id: ::String
|
580
580
|
attr_accessor is_unstructured: bool
|
581
|
+
attr_accessor role_arn: ::String
|
581
582
|
SENSITIVE: []
|
582
583
|
end
|
583
584
|
|
@@ -845,6 +846,7 @@ module Aws::CustomerProfiles
|
|
845
846
|
attr_accessor object_type_names: ::Hash[::String, ::String]
|
846
847
|
attr_accessor workflow_id: ::String
|
847
848
|
attr_accessor is_unstructured: bool
|
849
|
+
attr_accessor role_arn: ::String
|
848
850
|
SENSITIVE: []
|
849
851
|
end
|
850
852
|
|
@@ -1079,6 +1081,7 @@ module Aws::CustomerProfiles
|
|
1079
1081
|
attr_accessor tags: ::Hash[::String, ::String]
|
1080
1082
|
attr_accessor flow_definition: Types::FlowDefinition
|
1081
1083
|
attr_accessor object_type_names: ::Hash[::String, ::String]
|
1084
|
+
attr_accessor role_arn: ::String
|
1082
1085
|
SENSITIVE: [:flow_definition]
|
1083
1086
|
end
|
1084
1087
|
|
@@ -1092,6 +1095,7 @@ module Aws::CustomerProfiles
|
|
1092
1095
|
attr_accessor object_type_names: ::Hash[::String, ::String]
|
1093
1096
|
attr_accessor workflow_id: ::String
|
1094
1097
|
attr_accessor is_unstructured: bool
|
1098
|
+
attr_accessor role_arn: ::String
|
1095
1099
|
SENSITIVE: []
|
1096
1100
|
end
|
1097
1101
|
|
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.54.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: 2024-09-
|
11
|
+
date: 2024-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|