aws-sdk-rolesanywhere 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: cab6cc815d24122551e2bdd16d96902e338df7f0c651bda9c41d73cfbb1beed4
4
- data.tar.gz: 7e98e3d4abe80a389b0329c637b2defbd53d4112c95b7f9efa7280e82681a8f2
3
+ metadata.gz: cfe28a51801970c82d8c1b943633a533d46ae02d3923fbb49f930f0f1c11acb9
4
+ data.tar.gz: 8eee05d9ab3cf6a31ed7f047f7e8fd23d23de4b2bf860f6d7a17d1987320df1f
5
5
  SHA512:
6
- metadata.gz: 9fed2e23dfdfd1a65b45c81f0dfed91dfad2d01b0c796821a2257ce1f8f8ebd40a67e0e93916f5583005d45906a47c5d114465630b7e0205a012715875b351ae
7
- data.tar.gz: e4bc65409346237455920f80806e952fcdccce4271e90c16a98c1427433c9347cddbc4dd385ff4f85e2c6c1e605f5737a1c4726316f27ec1b5839a64e7e79833
6
+ metadata.gz: 8aba8f2bd23690516e3cf1fcd5ca6d62a6a10f91c833bee72589e6e5858b6a6696f4a850c0eefa81b58c4b781aa30b4fbb11891cc68419f3bed25d17323d337f
7
+ data.tar.gz: '08480442cc9759288a36b1db3b6af3909f20f9695d6370b98d085288d6c1af85cbde091217e36338eb34bc496c463d9019bd4752bcec2b5b4812bab1557a1885'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2024-03-22)
5
+ ------------------
6
+
7
+ * Feature - This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200.
8
+
4
9
  1.12.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -395,7 +395,13 @@ module Aws::RolesAnywhere
395
395
  # <b>Required permissions: </b> `rolesanywhere:CreateProfile`.
396
396
  #
397
397
  # @option params [Integer] :duration_seconds
398
- # The number of seconds the vended session credentials are valid for.
398
+ # Used to determine how long sessions vended using this profile are
399
+ # valid for. See the `Expiration` section of the [CreateSession API
400
+ # documentation][1] page for more details.
401
+ #
402
+ #
403
+ #
404
+ # [1]: https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object
399
405
  #
400
406
  # @option params [Boolean] :enabled
401
407
  # Specifies whether the profile is enabled.
@@ -1108,8 +1114,9 @@ module Aws::RolesAnywhere
1108
1114
 
1109
1115
  # Imports the certificate revocation list (CRL). A CRL is a list of
1110
1116
  # certificates that have been revoked by the issuing certificate
1111
- # Authority (CA). IAM Roles Anywhere validates against the CRL before
1112
- # issuing credentials.
1117
+ # Authority (CA).In order to be properly imported, a CRL must be in PEM
1118
+ # format. IAM Roles Anywhere validates against the CRL before issuing
1119
+ # credentials.
1113
1120
  #
1114
1121
  # <b>Required permissions: </b> `rolesanywhere:ImportCrl`.
1115
1122
  #
@@ -1639,7 +1646,13 @@ module Aws::RolesAnywhere
1639
1646
  # <b>Required permissions: </b> `rolesanywhere:UpdateProfile`.
1640
1647
  #
1641
1648
  # @option params [Integer] :duration_seconds
1642
- # The number of seconds the vended session credentials are valid for.
1649
+ # Used to determine how long sessions vended using this profile are
1650
+ # valid for. See the `Expiration` section of the [CreateSession API
1651
+ # documentation][1] page for more details.
1652
+ #
1653
+ #
1654
+ #
1655
+ # [1]: https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object
1643
1656
  #
1644
1657
  # @option params [Array<String>] :managed_policy_arns
1645
1658
  # A list of managed policy ARNs that apply to the vended session
@@ -1777,7 +1790,7 @@ module Aws::RolesAnywhere
1777
1790
  params: params,
1778
1791
  config: config)
1779
1792
  context[:gem_name] = 'aws-sdk-rolesanywhere'
1780
- context[:gem_version] = '1.12.0'
1793
+ context[:gem_version] = '1.13.0'
1781
1794
  Seahorse::Client::Request.new(handlers, context)
1782
1795
  end
1783
1796
 
@@ -32,7 +32,7 @@ module Aws::RolesAnywhere
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://rolesanywhere-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -24,7 +24,13 @@ module Aws::RolesAnywhere
24
24
  end
25
25
 
26
26
  # @!attribute [rw] duration_seconds
27
- # The number of seconds the vended session credentials are valid for.
27
+ # Used to determine how long sessions vended using this profile are
28
+ # valid for. See the `Expiration` section of the [CreateSession API
29
+ # documentation][1] page for more details.
30
+ #
31
+ #
32
+ #
33
+ # [1]: https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object
28
34
  # @return [Integer]
29
35
  #
30
36
  # @!attribute [rw] enabled
@@ -513,7 +519,13 @@ module Aws::RolesAnywhere
513
519
  # @return [String]
514
520
  #
515
521
  # @!attribute [rw] duration_seconds
516
- # The number of seconds the vended session credentials are valid for.
522
+ # Used to determine how long sessions vended using this profile are
523
+ # valid for. See the `Expiration` section of the [CreateSession API
524
+ # documentation][1] page for more details.
525
+ #
526
+ #
527
+ #
528
+ # [1]: https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object
517
529
  # @return [Integer]
518
530
  #
519
531
  # @!attribute [rw] enabled
@@ -1032,7 +1044,13 @@ module Aws::RolesAnywhere
1032
1044
  end
1033
1045
 
1034
1046
  # @!attribute [rw] duration_seconds
1035
- # The number of seconds the vended session credentials are valid for.
1047
+ # Used to determine how long sessions vended using this profile are
1048
+ # valid for. See the `Expiration` section of the [CreateSession API
1049
+ # documentation][1] page for more details.
1050
+ #
1051
+ #
1052
+ #
1053
+ # [1]: https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object
1036
1054
  # @return [Integer]
1037
1055
  #
1038
1056
  # @!attribute [rw] managed_policy_arns
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-rolesanywhere/customizations'
52
52
  # @!group service
53
53
  module Aws::RolesAnywhere
54
54
 
55
- GEM_VERSION = '1.12.0'
55
+ GEM_VERSION = '1.13.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rolesanywhere
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
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core