aws-sdk-customerprofiles 1.26.0 → 1.27.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: '08539fe94bd44b3ab47fb084d4e7894faa8e7f5d4a03839d74558c13140ffb3f'
4
- data.tar.gz: 8014bc59e0176fbb740cba01a9fec06c4a2a817c59c7ff12f8635babecd8da90
3
+ metadata.gz: 82a1bdd782bcde141996b8391caeccaef856e26b63c9328f324b84bc99d3ebc3
4
+ data.tar.gz: 642fccdfeb96b5c81793e9d4512b5b098e60a5d4ea974c6e628921c0b34b01c9
5
5
  SHA512:
6
- metadata.gz: f408e3b718326f1c74fa8e3e9a20c622574dd7d74ada094776c85ee26538f53d918dd70348728abd93b9eddb8f8139032179f59e8309acaa3b690f7b373903a4
7
- data.tar.gz: f02bcc824b14590d72cf1aebd270362adcc0fb06c00fb7816cca203ddb096d10658e150db029e1e5e4d6c3be27cb0035b378f64bd15d8ba576c84ce913028a93
6
+ metadata.gz: 2921a6ce39b43755a8f7541320ff6dcf46c26d8fa3dc0bdcba3cbfbb3de6bc163e4af049c4a17291d0e2a96af09a93a718b4f9aedb0c83ade30101e99ee782b5
7
+ data.tar.gz: 5d97ed76f3c4dcdd51c8b592c3fc3b6445a7f66acfe24c74c4fccf69cae3603b162daa7cc6b1fc61bbddd7496f5d2f8900252f9aa7bc6b1ccc9284a43d46c007
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2023-02-06)
5
+ ------------------
6
+
7
+ * Feature - This release deprecates the PartyType and Gender enum data types from the Profile model and replaces them with new PartyTypeString and GenderString attributes, which accept any string of length up to 255.
8
+
4
9
  1.26.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.27.0
@@ -2687,6 +2687,8 @@ module Aws::CustomerProfiles
2687
2687
  # resp.items[0].found_by_items[0].key_name #=> String
2688
2688
  # resp.items[0].found_by_items[0].values #=> Array
2689
2689
  # resp.items[0].found_by_items[0].values[0] #=> String
2690
+ # resp.items[0].party_type_string #=> String
2691
+ # resp.items[0].gender_string #=> String
2690
2692
  # resp.next_token #=> String
2691
2693
  #
2692
2694
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/SearchProfiles AWS API Documentation
@@ -3104,7 +3106,7 @@ module Aws::CustomerProfiles
3104
3106
  params: params,
3105
3107
  config: config)
3106
3108
  context[:gem_name] = 'aws-sdk-customerprofiles'
3107
- context[:gem_version] = '1.26.0'
3109
+ context[:gem_version] = '1.27.0'
3108
3110
  Seahorse::Client::Request.new(handlers, context)
3109
3111
  end
3110
3112
 
@@ -365,13 +365,13 @@ module Aws::CustomerProfiles
365
365
  CreateProfileRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
366
366
  CreateProfileRequest.add_member(:account_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "AccountNumber"))
367
367
  CreateProfileRequest.add_member(:additional_information, Shapes::ShapeRef.new(shape: string1To1000, location_name: "AdditionalInformation"))
368
- CreateProfileRequest.add_member(:party_type, Shapes::ShapeRef.new(shape: PartyType, location_name: "PartyType"))
368
+ CreateProfileRequest.add_member(:party_type, Shapes::ShapeRef.new(shape: PartyType, deprecated: true, location_name: "PartyType"))
369
369
  CreateProfileRequest.add_member(:business_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "BusinessName"))
370
370
  CreateProfileRequest.add_member(:first_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "FirstName"))
371
371
  CreateProfileRequest.add_member(:middle_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "MiddleName"))
372
372
  CreateProfileRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "LastName"))
373
373
  CreateProfileRequest.add_member(:birth_date, Shapes::ShapeRef.new(shape: string1To255, location_name: "BirthDate"))
374
- CreateProfileRequest.add_member(:gender, Shapes::ShapeRef.new(shape: Gender, location_name: "Gender"))
374
+ CreateProfileRequest.add_member(:gender, Shapes::ShapeRef.new(shape: Gender, deprecated: true, location_name: "Gender"))
375
375
  CreateProfileRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "PhoneNumber"))
376
376
  CreateProfileRequest.add_member(:mobile_phone_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "MobilePhoneNumber"))
377
377
  CreateProfileRequest.add_member(:home_phone_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "HomePhoneNumber"))
@@ -839,13 +839,13 @@ module Aws::CustomerProfiles
839
839
  Profile.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, location_name: "ProfileId"))
840
840
  Profile.add_member(:account_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "AccountNumber"))
841
841
  Profile.add_member(:additional_information, Shapes::ShapeRef.new(shape: string1To1000, location_name: "AdditionalInformation"))
842
- Profile.add_member(:party_type, Shapes::ShapeRef.new(shape: PartyType, location_name: "PartyType"))
842
+ Profile.add_member(:party_type, Shapes::ShapeRef.new(shape: PartyType, deprecated: true, location_name: "PartyType"))
843
843
  Profile.add_member(:business_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "BusinessName"))
844
844
  Profile.add_member(:first_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "FirstName"))
845
845
  Profile.add_member(:middle_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "MiddleName"))
846
846
  Profile.add_member(:last_name, Shapes::ShapeRef.new(shape: string1To255, location_name: "LastName"))
847
847
  Profile.add_member(:birth_date, Shapes::ShapeRef.new(shape: string1To255, location_name: "BirthDate"))
848
- Profile.add_member(:gender, Shapes::ShapeRef.new(shape: Gender, location_name: "Gender"))
848
+ Profile.add_member(:gender, Shapes::ShapeRef.new(shape: Gender, deprecated: true, location_name: "Gender"))
849
849
  Profile.add_member(:phone_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "PhoneNumber"))
850
850
  Profile.add_member(:mobile_phone_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "MobilePhoneNumber"))
851
851
  Profile.add_member(:home_phone_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "HomePhoneNumber"))
@@ -859,6 +859,8 @@ module Aws::CustomerProfiles
859
859
  Profile.add_member(:billing_address, Shapes::ShapeRef.new(shape: Address, location_name: "BillingAddress"))
860
860
  Profile.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "Attributes"))
861
861
  Profile.add_member(:found_by_items, Shapes::ShapeRef.new(shape: foundByList, location_name: "FoundByItems"))
862
+ Profile.add_member(:party_type_string, Shapes::ShapeRef.new(shape: string1To255, location_name: "PartyTypeString"))
863
+ Profile.add_member(:gender_string, Shapes::ShapeRef.new(shape: string1To255, location_name: "GenderString"))
862
864
  Profile.struct_class = Types::Profile
863
865
 
864
866
  ProfileIdList.member = Shapes::ShapeRef.new(shape: uuid)
@@ -1065,13 +1067,13 @@ module Aws::CustomerProfiles
1065
1067
  UpdateProfileRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, required: true, location_name: "ProfileId"))
1066
1068
  UpdateProfileRequest.add_member(:additional_information, Shapes::ShapeRef.new(shape: string0To1000, location_name: "AdditionalInformation"))
1067
1069
  UpdateProfileRequest.add_member(:account_number, Shapes::ShapeRef.new(shape: string0To255, location_name: "AccountNumber"))
1068
- UpdateProfileRequest.add_member(:party_type, Shapes::ShapeRef.new(shape: PartyType, location_name: "PartyType"))
1070
+ UpdateProfileRequest.add_member(:party_type, Shapes::ShapeRef.new(shape: PartyType, deprecated: true, location_name: "PartyType"))
1069
1071
  UpdateProfileRequest.add_member(:business_name, Shapes::ShapeRef.new(shape: string0To255, location_name: "BusinessName"))
1070
1072
  UpdateProfileRequest.add_member(:first_name, Shapes::ShapeRef.new(shape: string0To255, location_name: "FirstName"))
1071
1073
  UpdateProfileRequest.add_member(:middle_name, Shapes::ShapeRef.new(shape: string0To255, location_name: "MiddleName"))
1072
1074
  UpdateProfileRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: string0To255, location_name: "LastName"))
1073
1075
  UpdateProfileRequest.add_member(:birth_date, Shapes::ShapeRef.new(shape: string0To255, location_name: "BirthDate"))
1074
- UpdateProfileRequest.add_member(:gender, Shapes::ShapeRef.new(shape: Gender, location_name: "Gender"))
1076
+ UpdateProfileRequest.add_member(:gender, Shapes::ShapeRef.new(shape: Gender, deprecated: true, location_name: "Gender"))
1075
1077
  UpdateProfileRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: string0To255, location_name: "PhoneNumber"))
1076
1078
  UpdateProfileRequest.add_member(:mobile_phone_number, Shapes::ShapeRef.new(shape: string0To255, location_name: "MobilePhoneNumber"))
1077
1079
  UpdateProfileRequest.add_member(:home_phone_number, Shapes::ShapeRef.new(shape: string0To255, location_name: "HomePhoneNumber"))
@@ -1541,9 +1541,9 @@ module Aws::CustomerProfiles
1541
1541
  # @return [String]
1542
1542
  #
1543
1543
  # @!attribute [rw] is_unstructured
1544
- # Boolean to indicate if the Flow associated with the Integration is
1545
- # created via Appflow console or with ObjectTypeName equals
1546
- # \_unstructured via API/CLI in flowDefinition
1544
+ # Boolean that shows if the Flow that's associated with the
1545
+ # Integration is created in Amazon Appflow, or with ObjectTypeName
1546
+ # equals \_unstructured via API/CLI in flowDefinition.
1547
1547
  # @return [Boolean]
1548
1548
  #
1549
1549
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegrationResponse AWS API Documentation
@@ -2245,9 +2245,9 @@ module Aws::CustomerProfiles
2245
2245
  # @return [String]
2246
2246
  #
2247
2247
  # @!attribute [rw] is_unstructured
2248
- # Boolean to indicate if the Flow associated with the Integration is
2249
- # created via Appflow console or with ObjectTypeName equals
2250
- # \_unstructured via API/CLI in flowDefinition
2248
+ # Boolean that shows if the Flow that's associated with the
2249
+ # Integration is created in Amazon Appflow, or with ObjectTypeName
2250
+ # equals \_unstructured via API/CLI in flowDefinition.
2251
2251
  # @return [Boolean]
2252
2252
  #
2253
2253
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrationItem AWS API Documentation
@@ -3009,6 +3009,14 @@ module Aws::CustomerProfiles
3009
3009
  # [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html
3010
3010
  # @return [Array<Types::FoundByKeyValue>]
3011
3011
  #
3012
+ # @!attribute [rw] party_type_string
3013
+ # An alternative to PartyType which accepts any string as input.
3014
+ # @return [String]
3015
+ #
3016
+ # @!attribute [rw] gender_string
3017
+ # An alternative to Gender which accepts any string as input.
3018
+ # @return [String]
3019
+ #
3012
3020
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/Profile AWS API Documentation
3013
3021
  #
3014
3022
  class Profile < Struct.new(
@@ -3034,7 +3042,9 @@ module Aws::CustomerProfiles
3034
3042
  :mailing_address,
3035
3043
  :billing_address,
3036
3044
  :attributes,
3037
- :found_by_items)
3045
+ :found_by_items,
3046
+ :party_type_string,
3047
+ :gender_string)
3038
3048
  SENSITIVE = []
3039
3049
  include Aws::Structure
3040
3050
  end
@@ -3124,9 +3134,9 @@ module Aws::CustomerProfiles
3124
3134
  # @return [String]
3125
3135
  #
3126
3136
  # @!attribute [rw] is_unstructured
3127
- # Boolean to indicate if the Flow associated with the Integration is
3128
- # created via Appflow console or with ObjectTypeName equals
3129
- # \_unstructured via API/CLI in flowDefinition
3137
+ # Boolean that shows if the Flow that's associated with the
3138
+ # Integration is created in Amazon Appflow, or with ObjectTypeName
3139
+ # equals \_unstructured via API/CLI in flowDefinition.
3130
3140
  # @return [Boolean]
3131
3141
  #
3132
3142
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationResponse AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-customerprofiles/customizations'
52
52
  # @!group service
53
53
  module Aws::CustomerProfiles
54
54
 
55
- GEM_VERSION = '1.26.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  end
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.26.0
4
+ version: 1.27.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-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core