aws-sdk-route53domains 1.42.0 → 1.44.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: fb5ccec77f882efea43d11b85b26fd6251fe2fc9c1491c3e290b5c92a14831a4
4
- data.tar.gz: 4c32e75a41b83b1caa95154cb9319ea1be90754a41131c89ca3cec3f20e1749a
3
+ metadata.gz: c50437a64ea8e20bc34ac7b8986b1b685373ce5f17d8acf2ac802e95980e7bae
4
+ data.tar.gz: 2b9e54c6484f91fae67129e9931d69e07d52ada4081da7a0c65bb4e7bc1972c4
5
5
  SHA512:
6
- metadata.gz: 9c0793d392ea787ad6bfd6c2cdf203043e4e109cd396bcd71baa3b79aa5fa9b4a211ca0293e9c35361e70284d6a5f36ee45b145e805225beb5383065f721ec2e
7
- data.tar.gz: 9e92207fb6cf7692e4d21ac929954ef0775cc8e79afc862e1f27dc39eb17343e7d48abebb9deae8c5ce5f7ff72b97db9f5db629d19494d9b549927dadc57a0d7
6
+ metadata.gz: 286763cfabf2aa8fd03610262684d2746da2ed189f58a3996565b635aad4274e121bb283f54c7c745805d9b30218d3dd173fbaa45761cd905aae8c2208523a22
7
+ data.tar.gz: 2825ba32993ae3192c6b40743edd524ae32c2a379f1a60d89055d8891807467f88584ed9d27741f536bc52569d31d8144bd92192248ceb2c8840cea77bfc4a39
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.43.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.42.0 (2022-12-20)
5
17
  ------------------
6
18
 
@@ -275,4 +287,4 @@ Unreleased Changes
275
287
  1.0.0.rc1 (2016-12-05)
276
288
  ------------------
277
289
 
278
- * Feature - Initial preview release of the `aws-sdk-route53domains` gem.
290
+ * Feature - Initial preview release of the `aws-sdk-route53domains` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.44.0
@@ -275,6 +275,11 @@ module Aws::Route53Domains
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -2618,7 +2623,7 @@ module Aws::Route53Domains
2618
2623
  params: params,
2619
2624
  config: config)
2620
2625
  context[:gem_name] = 'aws-sdk-route53domains'
2621
- context[:gem_version] = '1.42.0'
2626
+ context[:gem_version] = '1.44.0'
2622
2627
  Seahorse::Client::Request.new(handlers, context)
2623
2628
  end
2624
2629
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::Route53Domains
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://route53domains-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://route53domains-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://route53domains.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://route53domains.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
54
- cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
55
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
56
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
57
- ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
58
- b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
59
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
60
- VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
61
- Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
62
- b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
63
- XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
64
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
65
- fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
66
- Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
67
- bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
68
- eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
69
- b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
70
- Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
71
- XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
72
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
73
- InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
74
- IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
75
- Ly9yb3V0ZTUzZG9tYWlucy1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
76
- bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
77
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
78
- XSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJsZWQsIGJ1
79
- dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBvciBib3Ro
80
- IiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
81
- bGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1d
82
- LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6
83
- ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIs
84
- ImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJ
85
- UFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
86
- OltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwi
87
- ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9yb3V0ZTUzZG9tYWlucy1maXBz
88
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
89
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
90
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
91
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
92
- ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
93
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
94
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
95
- Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
96
- YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
97
- bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
98
- b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9yb3V0ZTUzZG9t
99
- YWlucy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1
100
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
101
- ZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0
102
- YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
103
- cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
104
- bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3JvdXRlNTNkb21h
105
- aW5zLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
106
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
107
- XX1dfQ==
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -1142,7 +1142,7 @@ module Aws::Route53Domains
1142
1142
  #
1143
1143
  # * The value of `ES_IDENTIFICATION_TYPE`
1144
1144
  #
1145
- # **If `ES_LEGAL_FORM` is any value other than `INDIVIDUAL`\:**
1145
+ # **If `ES_LEGAL_FORM` is any value other than `INDIVIDUAL`:**
1146
1146
  #
1147
1147
  # * Specify 1 letter + 8 numbers (CIF \[Certificado de
1148
1148
  # Identificación Fiscal\])
@@ -1151,7 +1151,7 @@ module Aws::Route53Domains
1151
1151
  #
1152
1152
  # **If `ES_LEGAL_FORM` is `INDIVIDUAL`, the value that you specify
1153
1153
  # for `ES_IDENTIFICATION` depends on the value of
1154
- # `ES_IDENTIFICATION_TYPE`\:**
1154
+ # `ES_IDENTIFICATION_TYPE`:**
1155
1155
  #
1156
1156
  # * If `ES_IDENTIFICATION_TYPE` is `DNI_AND_NIF` (for Spanish
1157
1157
  # contacts):
@@ -1312,11 +1312,11 @@ module Aws::Route53Domains
1312
1312
  #
1313
1313
  # * `BIRTH_DATE_IN_YYYY_MM_DD`
1314
1314
  #
1315
- # * `BIRTH_DEPARTMENT`\: Specify the INSEE code that corresponds
1316
- # with the department where the contact was born. If the contact
1317
- # was born somewhere other than France or its overseas
1318
- # departments, specify `99`. For more information, including a
1319
- # list of departments and the corresponding INSEE numbers, see the
1315
+ # * `BIRTH_DEPARTMENT`: Specify the INSEE code that corresponds with
1316
+ # the department where the contact was born. If the contact was
1317
+ # born somewhere other than France or its overseas departments,
1318
+ # specify `99`. For more information, including a list of
1319
+ # departments and the corresponding INSEE numbers, see the
1320
1320
  # Wikipedia entry [Departments of France][1].
1321
1321
  #
1322
1322
  # * `BRAND_NUMBER`
@@ -1433,11 +1433,11 @@ module Aws::Route53Domains
1433
1433
  # @!attribute [rw] operator
1434
1434
  # The operator values for filtering domain names. The values can be:
1435
1435
  #
1436
- # * `LE`\: Less than, or equal to
1436
+ # * `LE`: Less than, or equal to
1437
1437
  #
1438
- # * `GE`\: Greater than, or equal to
1438
+ # * `GE`: Greater than, or equal to
1439
1439
  #
1440
- # * `BEGINS_WITH`\: Begins with
1440
+ # * `BEGINS_WITH`: Begins with
1441
1441
  # @return [String]
1442
1442
  #
1443
1443
  # @!attribute [rw] values
@@ -1803,20 +1803,20 @@ module Aws::Route53Domains
1803
1803
  # Lists any outstanding operations that require customer action. Valid
1804
1804
  # values are:
1805
1805
  #
1806
- # * `PENDING_ACCEPTANCE`\: The operation is waiting for acceptance
1807
- # from the account that is receiving the domain.
1806
+ # * `PENDING_ACCEPTANCE`: The operation is waiting for acceptance from
1807
+ # the account that is receiving the domain.
1808
1808
  #
1809
- # * `PENDING_CUSTOMER_ACTION`\: The operation is waiting for customer
1809
+ # * `PENDING_CUSTOMER_ACTION`: The operation is waiting for customer
1810
1810
  # action, for example, returning an email.
1811
1811
  #
1812
- # * `PENDING_AUTHORIZATION`\: The operation is waiting for the form of
1812
+ # * `PENDING_AUTHORIZATION`: The operation is waiting for the form of
1813
1813
  # authorization. For more information, see
1814
1814
  # [ResendOperationAuthorization][1].
1815
1815
  #
1816
- # * `PENDING_PAYMENT_VERIFICATION`\: The operation is waiting for the
1816
+ # * `PENDING_PAYMENT_VERIFICATION`: The operation is waiting for the
1817
1817
  # payment method to validate.
1818
1818
  #
1819
- # * `PENDING_SUPPORT_CASE`\: The operation includes a support case and
1819
+ # * `PENDING_SUPPORT_CASE`: The operation includes a support case and
1820
1820
  # is waiting for its resolution.
1821
1821
  #
1822
1822
  #
@@ -2164,20 +2164,20 @@ module Aws::Route53Domains
2164
2164
  #
2165
2165
  # Valid values are:
2166
2166
  #
2167
- # * `PENDING_ACCEPTANCE`\: The operation is waiting for acceptance
2168
- # from the account that is receiving the domain.
2167
+ # * `PENDING_ACCEPTANCE`: The operation is waiting for acceptance from
2168
+ # the account that is receiving the domain.
2169
2169
  #
2170
- # * `PENDING_CUSTOMER_ACTION`\: The operation is waiting for customer
2170
+ # * `PENDING_CUSTOMER_ACTION`: The operation is waiting for customer
2171
2171
  # action, for example, returning an email.
2172
2172
  #
2173
- # * `PENDING_AUTHORIZATION`\: The operation is waiting for the form of
2173
+ # * `PENDING_AUTHORIZATION`: The operation is waiting for the form of
2174
2174
  # authorization. For more information, see
2175
2175
  # [ResendOperationAuthorization][1].
2176
2176
  #
2177
- # * `PENDING_PAYMENT_VERIFICATION`\: The operation is waiting for the
2177
+ # * `PENDING_PAYMENT_VERIFICATION`: The operation is waiting for the
2178
2178
  # payment method to validate.
2179
2179
  #
2180
- # * `PENDING_SUPPORT_CASE`\: The operation includes a support case and
2180
+ # * `PENDING_SUPPORT_CASE`: The operation includes a support case and
2181
2181
  # is waiting for its resolution.
2182
2182
  #
2183
2183
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-route53domains/customizations'
52
52
  # @!group service
53
53
  module Aws::Route53Domains
54
54
 
55
- GEM_VERSION = '1.42.0'
55
+ GEM_VERSION = '1.44.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53domains
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.44.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: 2022-12-20 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement