aws-sdk-partnercentralaccount 1.12.0 → 1.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6519a50b2bafbfb092023ed5cd4bd174081dee140d70588233003192ffcefe9a
4
- data.tar.gz: 148319722407983460d3ff895ee032755bb64c6da19420e5ac91860db3d9cfe3
3
+ metadata.gz: 2311152bbadf9655e95689461478b1db6202f33ecc3809f56b43885797250b2d
4
+ data.tar.gz: d1dea72da8875bcd44f24de1e90fd743073850b6f0b242ae773f7657d31f9af9
5
5
  SHA512:
6
- metadata.gz: 73ee0e3dea2f6e8d8eb4aa7b1ef6208aeb3be74c21af8dd36882cad5dc829c6d77b930bd9540bd8b4917c989dd4439f891edb31dd24ed849b715c342392f3d87
7
- data.tar.gz: b178d2c07fd658bcc2a0c5f7444273447a13ed3cabd8e3b2c7f78705eb80fd2f05002706955c09a55b50e1b2d4699b3ea60b5fb5a313ae4f5ae1cebd7679cfca
6
+ metadata.gz: 83fa0ee63d05da09840ea0780c0ee9bf8abdb1909d4b83fdb9bf87a91f73b43a37b61b4c9dcb76ca237620763fdf680a7906d23b8925ddc8f247174f67eea099
7
+ data.tar.gz: 97c5ea329f2c79d50c52f1f3c4d3f01b74dafde9c1e929cee2c2bfb41ca269d0c6eb09559c84db571dd2df36dc1ec82584e2aff50565c49e0adbee220cf30309
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2026-07-27)
5
+ ------------------
6
+
7
+ * Feature - Adds optional headquarters location to StartProfileUpdateTask, letting partners record their headquarters as an ISO 3166 country and subdivision code on their profile. When headquarters is provided, both the country and subdivision codes are required.
8
+
4
9
  1.12.0 (2026-07-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -783,6 +783,8 @@ module Aws::PartnerCentralAccount
783
783
  # resp.task_details.localized_contents[0].website_url #=> String
784
784
  # resp.task_details.localized_contents[0].logo_url #=> String
785
785
  # resp.task_details.localized_contents[0].locale #=> String
786
+ # resp.task_details.headquarters.country_code #=> String
787
+ # resp.task_details.headquarters.subdivision_code #=> String
786
788
  # resp.started_at #=> Time
787
789
  # resp.status #=> String, one of "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
788
790
  # resp.ended_at #=> Time
@@ -971,6 +973,8 @@ module Aws::PartnerCentralAccount
971
973
  # resp.profile.localized_contents[0].website_url #=> String
972
974
  # resp.profile.localized_contents[0].logo_url #=> String
973
975
  # resp.profile.localized_contents[0].locale #=> String
976
+ # resp.profile.headquarters.country_code #=> String
977
+ # resp.profile.headquarters.subdivision_code #=> String
974
978
  # resp.profile.profile_id #=> String
975
979
  # resp.aws_training_certification_email_domains #=> Array
976
980
  # resp.aws_training_certification_email_domains[0].domain_name #=> String
@@ -1267,6 +1271,8 @@ module Aws::PartnerCentralAccount
1267
1271
  # resp.profile.localized_contents[0].website_url #=> String
1268
1272
  # resp.profile.localized_contents[0].logo_url #=> String
1269
1273
  # resp.profile.localized_contents[0].locale #=> String
1274
+ # resp.profile.headquarters.country_code #=> String
1275
+ # resp.profile.headquarters.subdivision_code #=> String
1270
1276
  # resp.profile.profile_id #=> String
1271
1277
  # resp.aws_training_certification_email_domains #=> Array
1272
1278
  # resp.aws_training_certification_email_domains[0].domain_name #=> String
@@ -1328,6 +1334,8 @@ module Aws::PartnerCentralAccount
1328
1334
  # resp.task_details.localized_contents[0].website_url #=> String
1329
1335
  # resp.task_details.localized_contents[0].logo_url #=> String
1330
1336
  # resp.task_details.localized_contents[0].locale #=> String
1337
+ # resp.task_details.headquarters.country_code #=> String
1338
+ # resp.task_details.headquarters.subdivision_code #=> String
1331
1339
  # resp.started_at #=> Time
1332
1340
  # resp.status #=> String, one of "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
1333
1341
  # resp.ended_at #=> Time
@@ -2057,6 +2065,10 @@ module Aws::PartnerCentralAccount
2057
2065
  # locale: "Locale", # required
2058
2066
  # },
2059
2067
  # ],
2068
+ # headquarters: {
2069
+ # country_code: "CountryCode", # required
2070
+ # subdivision_code: "SubdivisionCode", # required
2071
+ # },
2060
2072
  # },
2061
2073
  # })
2062
2074
  #
@@ -2080,6 +2092,8 @@ module Aws::PartnerCentralAccount
2080
2092
  # resp.task_details.localized_contents[0].website_url #=> String
2081
2093
  # resp.task_details.localized_contents[0].logo_url #=> String
2082
2094
  # resp.task_details.localized_contents[0].locale #=> String
2095
+ # resp.task_details.headquarters.country_code #=> String
2096
+ # resp.task_details.headquarters.subdivision_code #=> String
2083
2097
  # resp.started_at #=> Time
2084
2098
  # resp.status #=> String, one of "IN_PROGRESS", "CANCELED", "SUCCEEDED", "FAILED"
2085
2099
  # resp.ended_at #=> Time
@@ -2434,7 +2448,7 @@ module Aws::PartnerCentralAccount
2434
2448
  tracer: tracer
2435
2449
  )
2436
2450
  context[:gem_name] = 'aws-sdk-partnercentralaccount'
2437
- context[:gem_version] = '1.12.0'
2451
+ context[:gem_version] = '1.13.0'
2438
2452
  Seahorse::Client::Request.new(handlers, context)
2439
2453
  end
2440
2454
 
@@ -99,6 +99,7 @@ module Aws::PartnerCentralAccount
99
99
  GetQualificationsDisassociationTaskResponse = Shapes::StructureShape.new(name: 'GetQualificationsDisassociationTaskResponse')
100
100
  GetVerificationRequest = Shapes::StructureShape.new(name: 'GetVerificationRequest')
101
101
  GetVerificationResponse = Shapes::StructureShape.new(name: 'GetVerificationResponse')
102
+ Headquarters = Shapes::StructureShape.new(name: 'Headquarters')
102
103
  IndustrySegment = Shapes::StringShape.new(name: 'IndustrySegment')
103
104
  IndustrySegmentList = Shapes::ListShape.new(name: 'IndustrySegmentList')
104
105
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
@@ -177,6 +178,7 @@ module Aws::PartnerCentralAccount
177
178
  StartVerificationRequest = Shapes::StructureShape.new(name: 'StartVerificationRequest')
178
179
  StartVerificationResponse = Shapes::StructureShape.new(name: 'StartVerificationResponse')
179
180
  String = Shapes::StringShape.new(name: 'String')
181
+ SubdivisionCode = Shapes::StringShape.new(name: 'SubdivisionCode')
180
182
  Tag = Shapes::StructureShape.new(name: 'Tag')
181
183
  TagKey = Shapes::StringShape.new(name: 'TagKey')
182
184
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
@@ -569,6 +571,10 @@ module Aws::PartnerCentralAccount
569
571
  GetVerificationResponse.add_member(:completed_at, Shapes::ShapeRef.new(shape: DateTime, location_name: "CompletedAt"))
570
572
  GetVerificationResponse.struct_class = Types::GetVerificationResponse
571
573
 
574
+ Headquarters.add_member(:country_code, Shapes::ShapeRef.new(shape: CountryCode, required: true, location_name: "CountryCode"))
575
+ Headquarters.add_member(:subdivision_code, Shapes::ShapeRef.new(shape: SubdivisionCode, required: true, location_name: "SubdivisionCode"))
576
+ Headquarters.struct_class = Types::Headquarters
577
+
572
578
  IndustrySegmentList.member = Shapes::ShapeRef.new(shape: IndustrySegment)
573
579
 
574
580
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
@@ -652,6 +658,7 @@ module Aws::PartnerCentralAccount
652
658
  PartnerProfile.add_member(:industry_segments, Shapes::ShapeRef.new(shape: IndustrySegmentList, required: true, location_name: "IndustrySegments"))
653
659
  PartnerProfile.add_member(:translation_source_locale, Shapes::ShapeRef.new(shape: Locale, required: true, location_name: "TranslationSourceLocale"))
654
660
  PartnerProfile.add_member(:localized_contents, Shapes::ShapeRef.new(shape: LocalizedContentList, location_name: "LocalizedContents"))
661
+ PartnerProfile.add_member(:headquarters, Shapes::ShapeRef.new(shape: Headquarters, location_name: "Headquarters"))
655
662
  PartnerProfile.add_member(:profile_id, Shapes::ShapeRef.new(shape: PartnerProfileId, location_name: "ProfileId"))
656
663
  PartnerProfile.struct_class = Types::PartnerProfile
657
664
 
@@ -823,6 +830,7 @@ module Aws::PartnerCentralAccount
823
830
  TaskDetails.add_member(:industry_segments, Shapes::ShapeRef.new(shape: IndustrySegmentList, required: true, location_name: "IndustrySegments"))
824
831
  TaskDetails.add_member(:translation_source_locale, Shapes::ShapeRef.new(shape: Locale, required: true, location_name: "TranslationSourceLocale"))
825
832
  TaskDetails.add_member(:localized_contents, Shapes::ShapeRef.new(shape: LocalizedContentList, location_name: "LocalizedContents"))
833
+ TaskDetails.add_member(:headquarters, Shapes::ShapeRef.new(shape: Headquarters, location_name: "Headquarters"))
826
834
  TaskDetails.struct_class = Types::TaskDetails
827
835
 
828
836
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
@@ -1760,6 +1760,30 @@ module Aws::PartnerCentralAccount
1760
1760
  include Aws::Structure
1761
1761
  end
1762
1762
 
1763
+ # Contains the partner's headquarters location using International
1764
+ # Organization for Standardization (ISO) 3166 country and subdivision
1765
+ # codes.
1766
+ #
1767
+ # @!attribute [rw] country_code
1768
+ # The ISO 3166-1 alpha-2 country code of the partner's headquarters.
1769
+ # For example, `US`, `BR`, or `DE`.
1770
+ # @return [String]
1771
+ #
1772
+ # @!attribute [rw] subdivision_code
1773
+ # The subdivision portion of the ISO 3166-2 code for the partner's
1774
+ # headquarters (for example, `SP` from `BR-SP`, `NSW` from `AU-NSW`,
1775
+ # or `13` from `JP-13`).
1776
+ # @return [String]
1777
+ #
1778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/Headquarters AWS API Documentation
1779
+ #
1780
+ class Headquarters < Struct.new(
1781
+ :country_code,
1782
+ :subdivision_code)
1783
+ SENSITIVE = []
1784
+ include Aws::Structure
1785
+ end
1786
+
1763
1787
  # An internal server error occurred while processing the request. This
1764
1788
  # is typically a temporary condition and the request may be retried.
1765
1789
  #
@@ -2084,6 +2108,12 @@ module Aws::PartnerCentralAccount
2084
2108
  # regions.
2085
2109
  # @return [Array<Types::LocalizedContent>]
2086
2110
  #
2111
+ # @!attribute [rw] headquarters
2112
+ # The ISO 3166 country and subdivision codes for the partner's
2113
+ # headquarters location. If no headquarters location is set, this
2114
+ # field is not included in the response.
2115
+ # @return [Types::Headquarters]
2116
+ #
2087
2117
  # @!attribute [rw] profile_id
2088
2118
  # The unique identifier of the partner profile.
2089
2119
  # @return [String]
@@ -2099,6 +2129,7 @@ module Aws::PartnerCentralAccount
2099
2129
  :industry_segments,
2100
2130
  :translation_source_locale,
2101
2131
  :localized_contents,
2132
+ :headquarters,
2102
2133
  :profile_id)
2103
2134
  SENSITIVE = []
2104
2135
  include Aws::Structure
@@ -2919,6 +2950,12 @@ module Aws::PartnerCentralAccount
2919
2950
  # The updated localized content for the partner profile.
2920
2951
  # @return [Array<Types::LocalizedContent>]
2921
2952
  #
2953
+ # @!attribute [rw] headquarters
2954
+ # The ISO 3166 country and subdivision codes for the partner's
2955
+ # headquarters location. If you omit this field, the service retains
2956
+ # the existing headquarters value.
2957
+ # @return [Types::Headquarters]
2958
+ #
2922
2959
  # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/TaskDetails AWS API Documentation
2923
2960
  #
2924
2961
  class TaskDetails < Struct.new(
@@ -2929,7 +2966,8 @@ module Aws::PartnerCentralAccount
2929
2966
  :primary_solution_type,
2930
2967
  :industry_segments,
2931
2968
  :translation_source_locale,
2932
- :localized_contents)
2969
+ :localized_contents,
2970
+ :headquarters)
2933
2971
  SENSITIVE = []
2934
2972
  include Aws::Structure
2935
2973
  end
@@ -55,7 +55,7 @@ module Aws::PartnerCentralAccount
55
55
  autoload :EndpointProvider, 'aws-sdk-partnercentralaccount/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-partnercentralaccount/endpoints'
57
57
 
58
- GEM_VERSION = '1.12.0'
58
+ GEM_VERSION = '1.13.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -592,7 +592,11 @@ module Aws
592
592
  logo_url: ::String,
593
593
  locale: ::String
594
594
  }
595
- ]?
595
+ ]?,
596
+ headquarters: {
597
+ country_code: ::String,
598
+ subdivision_code: ::String
599
+ }?
596
600
  }
597
601
  ) -> _StartProfileUpdateTaskResponseSuccess
598
602
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProfileUpdateTaskResponseSuccess
data/sig/types.rbs CHANGED
@@ -460,6 +460,12 @@ module Aws::PartnerCentralAccount
460
460
  SENSITIVE: []
461
461
  end
462
462
 
463
+ class Headquarters
464
+ attr_accessor country_code: ::String
465
+ attr_accessor subdivision_code: ::String
466
+ SENSITIVE: []
467
+ end
468
+
463
469
  class InternalServerException
464
470
  attr_accessor message: ::String
465
471
  SENSITIVE: []
@@ -561,6 +567,7 @@ module Aws::PartnerCentralAccount
561
567
  attr_accessor industry_segments: ::Array[("AGRICULTURE_MINING" | "BIOTECHNOLOGY" | "BUSINESS_CONSUMER_SERVICES" | "BUSINESS_SERV" | "COMMUNICATIONS" | "COMPUTER_HARDWARE" | "COMPUTERS_ELECTRONICS" | "COMPUTER_SOFTWARE" | "CONSUMER_GOODS" | "CONSUMER_RELATED" | "EDUCATION" | "ENERGY_UTILITIES" | "FINANCIAL_SERVICES" | "GAMING" | "GOVERNMENT" | "GOVERNMENT_EDUCATION_PUBLIC_SERVICES" | "HEALTHCARE" | "HEALTHCARE_PHARMACEUTICALS_BIOTECH" | "INDUSTRIAL_ENERGY" | "INTERNET_SPECIFIC" | "LIFE_SCIENCES" | "MANUFACTURING" | "MEDIA_ENTERTAINMENT_LEISURE" | "MEDIA_ENTERTAINMENT" | "MEDICAL_HEALTH" | "NON_PROFIT_ORGANIZATION" | "OTHER" | "PROFESSIONAL_SERVICES" | "REAL_ESTATE_CONSTRUCTION" | "RETAIL" | "RETAIL_WHOLESALE_DISTRIBUTION" | "SEMICONDUCTOR_ELECTR" | "SOFTWARE_INTERNET" | "TELECOMMUNICATIONS" | "TRANSPORTATION_LOGISTICS" | "TRAVEL_HOSPITALITY" | "WHOLESALE_DISTRIBUTION")]
562
568
  attr_accessor translation_source_locale: ::String
563
569
  attr_accessor localized_contents: ::Array[Types::LocalizedContent]
570
+ attr_accessor headquarters: Types::Headquarters
564
571
  attr_accessor profile_id: ::String
565
572
  SENSITIVE: []
566
573
  end
@@ -779,6 +786,7 @@ module Aws::PartnerCentralAccount
779
786
  attr_accessor industry_segments: ::Array[("AGRICULTURE_MINING" | "BIOTECHNOLOGY" | "BUSINESS_CONSUMER_SERVICES" | "BUSINESS_SERV" | "COMMUNICATIONS" | "COMPUTER_HARDWARE" | "COMPUTERS_ELECTRONICS" | "COMPUTER_SOFTWARE" | "CONSUMER_GOODS" | "CONSUMER_RELATED" | "EDUCATION" | "ENERGY_UTILITIES" | "FINANCIAL_SERVICES" | "GAMING" | "GOVERNMENT" | "GOVERNMENT_EDUCATION_PUBLIC_SERVICES" | "HEALTHCARE" | "HEALTHCARE_PHARMACEUTICALS_BIOTECH" | "INDUSTRIAL_ENERGY" | "INTERNET_SPECIFIC" | "LIFE_SCIENCES" | "MANUFACTURING" | "MEDIA_ENTERTAINMENT_LEISURE" | "MEDIA_ENTERTAINMENT" | "MEDICAL_HEALTH" | "NON_PROFIT_ORGANIZATION" | "OTHER" | "PROFESSIONAL_SERVICES" | "REAL_ESTATE_CONSTRUCTION" | "RETAIL" | "RETAIL_WHOLESALE_DISTRIBUTION" | "SEMICONDUCTOR_ELECTR" | "SOFTWARE_INTERNET" | "TELECOMMUNICATIONS" | "TRANSPORTATION_LOGISTICS" | "TRAVEL_HOSPITALITY" | "WHOLESALE_DISTRIBUTION")]
780
787
  attr_accessor translation_source_locale: ::String
781
788
  attr_accessor localized_contents: ::Array[Types::LocalizedContent]
789
+ attr_accessor headquarters: Types::Headquarters
782
790
  SENSITIVE: []
783
791
  end
784
792
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-partnercentralaccount
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services