aws-sdk-acmpca 1.52.0 → 1.54.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: 0e706aa6eca5a952d3201d09d5cf16d04e98e3eba3baddd92dd041f0093ec3f1
4
- data.tar.gz: 641c6003c3cf79f8e89ca2e910951e06919f654228758d41b5adc697f79cb475
3
+ metadata.gz: 1a950f79086032431c1710a0929938d777315c11905ade3f5fdf8f5d3eefcf02
4
+ data.tar.gz: 483bdcde74895d47eea75fe9dbfe2eb243ae2fd1af355647117524d123a832c9
5
5
  SHA512:
6
- metadata.gz: e240d14f670b39bc5ac4cd8998107e3ecbd5ead1635a3879dc455d1127336614ff607014b1b94a194572341ad23eaa6db5c335754cc731368e716d76807b960d
7
- data.tar.gz: 94173145f10fc248792ceeb0fba81a764391a31226578ba710764838852863b653c91cecfe8a05d10fd9c58c5450af4172ab5fccacbde4a3d6f5382c9d4ae740
6
+ metadata.gz: 483446a0cf71c085fd8cf0eec770c9fd2ad650f95590d54d333668032768d48a75d209c4ce018222f7232f3929005ded69d29d319eee9eab04390ce9e99ddbde
7
+ data.tar.gz: 4bb1a4d983fdb8b7c0ebe65361a81bd354a560f4fac9831a704358f5e49e145e3b914b3873e095259d9794c2762d48047d4089c6354ea2f53b706c767709ab4b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.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.53.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.52.0 (2023-01-06)
5
17
  ------------------
6
18
 
@@ -270,4 +282,4 @@ Unreleased Changes
270
282
  1.0.0 (2018-04-04)
271
283
  ------------------
272
284
 
273
- * Feature - Initial release of `aws-sdk-acmpca`.
285
+ * Feature - Initial release of `aws-sdk-acmpca`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -275,6 +275,11 @@ module Aws::ACMPCA
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
@@ -2562,7 +2567,7 @@ module Aws::ACMPCA
2562
2567
  params: params,
2563
2568
  config: config)
2564
2569
  context[:gem_name] = 'aws-sdk-acmpca'
2565
- context[:gem_version] = '1.52.0'
2570
+ context[:gem_version] = '1.54.0'
2566
2571
  Seahorse::Client::Request.new(handlers, context)
2567
2572
  end
2568
2573
 
@@ -9,107 +9,46 @@
9
9
 
10
10
  module Aws::ACMPCA
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://acm-pca-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
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://acm-pca.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ return Aws::Endpoints::Endpoint.new(url: "https://acm-pca-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
39
+ end
40
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
41
+ end
42
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
43
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
44
+ return Aws::Endpoints::Endpoint.new(url: "https://acm-pca.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
45
+ end
46
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
47
+ end
48
+ return Aws::Endpoints::Endpoint.new(url: "https://acm-pca.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
49
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
50
+ raise ArgumentError, 'No endpoint could be resolved'
24
51
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
52
  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
- Ly9hY20tcGNhLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFs
76
- U3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
77
- fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJv
78
- ciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMg
79
- cGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBl
80
- IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
81
- YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUi
82
- OiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVh
83
- bkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6
84
- W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19
85
- XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5
86
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3Ry
87
- aW5nRXF1YWxzIiwiYXJndiI6WyJhd3MtdXMtZ292Iix7ImZuIjoiZ2V0QXR0
88
- ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19
89
- XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2FjbS1wY2Eue1JlZ2lv
90
- bn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
91
- e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRp
92
- b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9hY20tcGNhLWZp
93
- cHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJv
94
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
95
- fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVk
96
- IGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0
97
- eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFu
98
- RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19
99
- XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4i
100
- OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIi
101
- LCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNE
102
- dWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
103
- dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2FjbS1wY2Eu
104
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9
105
- IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
106
- aW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBp
107
- cyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
108
- IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
109
- XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9hY20tcGNhLntSZWdpb259
110
- LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
111
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
112
-
113
- JSON
114
53
  end
115
54
  end
@@ -657,45 +657,45 @@ module Aws::ACMPCA
657
657
  #
658
658
  # CRLs contain the following fields:
659
659
  #
660
- # * **Version**\: The current version number defined in RFC 5280 is V2.
660
+ # * **Version**: The current version number defined in RFC 5280 is V2.
661
661
  # The integer value is 0x1.
662
662
  #
663
- # * **Signature Algorithm**\: The name of the algorithm used to sign the
663
+ # * **Signature Algorithm**: The name of the algorithm used to sign the
664
664
  # CRL.
665
665
  #
666
- # * **Issuer**\: The X.500 distinguished name of your private CA that
666
+ # * **Issuer**: The X.500 distinguished name of your private CA that
667
667
  # issued the CRL.
668
668
  #
669
- # * **Last Update**\: The issue date and time of this CRL.
669
+ # * **Last Update**: The issue date and time of this CRL.
670
670
  #
671
- # * **Next Update**\: The day and time by which the next CRL will be
671
+ # * **Next Update**: The day and time by which the next CRL will be
672
672
  # issued.
673
673
  #
674
- # * **Revoked Certificates**\: List of revoked certificates. Each list
674
+ # * **Revoked Certificates**: List of revoked certificates. Each list
675
675
  # item contains the following information.
676
676
  #
677
- # * **Serial Number**\: The serial number, in hexadecimal format, of
677
+ # * **Serial Number**: The serial number, in hexadecimal format, of
678
678
  # the revoked certificate.
679
679
  #
680
- # * **Revocation Date**\: Date and time the certificate was revoked.
680
+ # * **Revocation Date**: Date and time the certificate was revoked.
681
681
  #
682
- # * **CRL Entry Extensions**\: Optional extensions for the CRL entry.
682
+ # * **CRL Entry Extensions**: Optional extensions for the CRL entry.
683
683
  #
684
- # * **X509v3 CRL Reason Code**\: Reason the certificate was revoked.
684
+ # * **X509v3 CRL Reason Code**: Reason the certificate was revoked.
685
685
  #
686
686
  # ^
687
687
  #
688
- # * **CRL Extensions**\: Optional extensions for the CRL.
688
+ # * **CRL Extensions**: Optional extensions for the CRL.
689
689
  #
690
- # * **X509v3 Authority Key Identifier**\: Identifies the public key
690
+ # * **X509v3 Authority Key Identifier**: Identifies the public key
691
691
  # associated with the private key used to sign the certificate.
692
692
  #
693
- # * **X509v3 CRL Number:**\: Decimal sequence number for the CRL.
693
+ # * **X509v3 CRL Number:**: Decimal sequence number for the CRL.
694
694
  #
695
- # * **Signature Algorithm**\: Algorithm used by your private CA to sign
695
+ # * **Signature Algorithm**: Algorithm used by your private CA to sign
696
696
  # the CRL.
697
697
  #
698
- # * **Signature Value**\: Signature computed over the CRL.
698
+ # * **Signature Value**: Signature computed over the CRL.
699
699
  #
700
700
  # Certificate revocation lists created by Amazon Web Services Private CA
701
701
  # are DER-encoded. You can use the following OpenSSL command to list a
@@ -2526,10 +2526,10 @@ module Aws::ACMPCA
2526
2526
  #
2527
2527
  # Amazon Web Services Private CA API consumes the `Validity` data type
2528
2528
  # differently in two distinct parameters of the `IssueCertificate`
2529
- # action. The required parameter `IssueCertificate`\:`Validity`
2530
- # specifies the end of a certificate's validity period. The optional
2531
- # parameter `IssueCertificate`\:`ValidityNotBefore` specifies a
2532
- # customized starting time for the validity period.
2529
+ # action. The required parameter `IssueCertificate`:`Validity` specifies
2530
+ # the end of a certificate's validity period. The optional parameter
2531
+ # `IssueCertificate`:`ValidityNotBefore` specifies a customized starting
2532
+ # time for the validity period.
2533
2533
  #
2534
2534
  #
2535
2535
  #
@@ -2545,7 +2545,7 @@ module Aws::ACMPCA
2545
2545
  # those listed below. Type definitions with values include a sample
2546
2546
  # input value and the resulting output.
2547
2547
  #
2548
- # `END_DATE`\: The specific date and time when the certificate will
2548
+ # `END_DATE`: The specific date and time when the certificate will
2549
2549
  # expire, expressed using UTCTime (YYMMDDHHMMSS) or GeneralizedTime
2550
2550
  # (YYYYMMDDHHMMSS) format. When UTCTime is used, if the year field
2551
2551
  # (YY) is greater than or equal to 50, the year is interpreted as
@@ -2556,7 +2556,7 @@ module Aws::ACMPCA
2556
2556
  #
2557
2557
  # * Output expiration date/time: 12/31/2049 23:59:59
2558
2558
  #
2559
- # `ABSOLUTE`\: The specific date and time when the validity of a
2559
+ # `ABSOLUTE`: The specific date and time when the validity of a
2560
2560
  # certificate will start or expire, expressed in seconds since the
2561
2561
  # Unix Epoch.
2562
2562
  #
@@ -2564,7 +2564,7 @@ module Aws::ACMPCA
2564
2564
  #
2565
2565
  # * Output expiration date/time: 01/01/2050 00:00:00
2566
2566
  #
2567
- # `DAYS`, `MONTHS`, `YEARS`\: The relative time from the moment of
2567
+ # `DAYS`, `MONTHS`, `YEARS`: The relative time from the moment of
2568
2568
  # issuance until the certificate will expire, expressed in days,
2569
2569
  # months, or years.
2570
2570
  #
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-acmpca/customizations'
53
53
  # @!group service
54
54
  module Aws::ACMPCA
55
55
 
56
- GEM_VERSION = '1.52.0'
56
+ GEM_VERSION = '1.54.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-acmpca
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
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: 2023-01-06 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