aws-sdk-iam 1.136.0 → 1.137.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam/client.rb +3 -1
- data/lib/aws-sdk-iam/client_api.rb +1 -0
- data/lib/aws-sdk-iam/types.rb +10 -1
- data/lib/aws-sdk-iam.rb +1 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0bf2074020891894b1f49eee0a25f179621706a9fae2bb4b2478f70ca4727bfb
|
|
4
|
+
data.tar.gz: 988c3fc2174792dc3c8694b0823e0334a1669cb28140b5e5b77d2d27eba6bf44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4221387880b9e1a5975ed07ec9c98aabbb5e0c5c8317e7109adc1c5b860bcda5423fd3a5d16660f184b3691e62ca149e6a9b036158b7e192be80339ff728d750
|
|
7
|
+
data.tar.gz: eefa8c9925ea20198d506bbd94b30e3a15bf125b18f20310051176b884446ef64186d875f0a93eed7a6dd7214ff118a4560630b7db520bc37963ea4180477f7e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.137.0
|
data/lib/aws-sdk-iam/client.rb
CHANGED
|
@@ -5457,6 +5457,7 @@ module Aws::IAM
|
|
|
5457
5457
|
# resp.delegation_request.owner_id #=> String
|
|
5458
5458
|
# resp.delegation_request.approver_id #=> String
|
|
5459
5459
|
# resp.delegation_request.state #=> String, one of "UNASSIGNED", "ASSIGNED", "PENDING_APPROVAL", "FINALIZED", "ACCEPTED", "REJECTED", "EXPIRED"
|
|
5460
|
+
# resp.delegation_request.expiration_time #=> Time
|
|
5460
5461
|
# resp.delegation_request.requestor_id #=> String
|
|
5461
5462
|
# resp.delegation_request.requestor_name #=> String
|
|
5462
5463
|
# resp.delegation_request.create_date #=> Time
|
|
@@ -7753,6 +7754,7 @@ module Aws::IAM
|
|
|
7753
7754
|
# resp.delegation_requests[0].owner_id #=> String
|
|
7754
7755
|
# resp.delegation_requests[0].approver_id #=> String
|
|
7755
7756
|
# resp.delegation_requests[0].state #=> String, one of "UNASSIGNED", "ASSIGNED", "PENDING_APPROVAL", "FINALIZED", "ACCEPTED", "REJECTED", "EXPIRED"
|
|
7757
|
+
# resp.delegation_requests[0].expiration_time #=> Time
|
|
7756
7758
|
# resp.delegation_requests[0].requestor_id #=> String
|
|
7757
7759
|
# resp.delegation_requests[0].requestor_name #=> String
|
|
7758
7760
|
# resp.delegation_requests[0].create_date #=> Time
|
|
@@ -14689,7 +14691,7 @@ module Aws::IAM
|
|
|
14689
14691
|
tracer: tracer
|
|
14690
14692
|
)
|
|
14691
14693
|
context[:gem_name] = 'aws-sdk-iam'
|
|
14692
|
-
context[:gem_version] = '1.
|
|
14694
|
+
context[:gem_version] = '1.137.0'
|
|
14693
14695
|
Seahorse::Client::Request.new(handlers, context)
|
|
14694
14696
|
end
|
|
14695
14697
|
|
|
@@ -839,6 +839,7 @@ module Aws::IAM
|
|
|
839
839
|
DelegationRequest.add_member(:owner_id, Shapes::ShapeRef.new(shape: ownerIdType, location_name: "OwnerId"))
|
|
840
840
|
DelegationRequest.add_member(:approver_id, Shapes::ShapeRef.new(shape: arnType, location_name: "ApproverId"))
|
|
841
841
|
DelegationRequest.add_member(:state, Shapes::ShapeRef.new(shape: stateType, location_name: "State"))
|
|
842
|
+
DelegationRequest.add_member(:expiration_time, Shapes::ShapeRef.new(shape: dateType, location_name: "ExpirationTime"))
|
|
842
843
|
DelegationRequest.add_member(:requestor_id, Shapes::ShapeRef.new(shape: accountIdType, location_name: "RequestorId"))
|
|
843
844
|
DelegationRequest.add_member(:requestor_name, Shapes::ShapeRef.new(shape: requestorNameType, location_name: "RequestorName"))
|
|
844
845
|
DelegationRequest.add_member(:create_date, Shapes::ShapeRef.new(shape: dateType, location_name: "CreateDate"))
|
data/lib/aws-sdk-iam/types.rb
CHANGED
|
@@ -2153,10 +2153,18 @@ module Aws::IAM
|
|
|
2153
2153
|
# The state of this delegation request.
|
|
2154
2154
|
#
|
|
2155
2155
|
# See the [Understanding the Request
|
|
2156
|
-
# Lifecycle](IAM/latest/UserGuide/temporary-delegation-building-integration.html)
|
|
2156
|
+
# Lifecycle](IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle)
|
|
2157
2157
|
# for an explanation of how these states are transitioned.
|
|
2158
2158
|
# @return [String]
|
|
2159
2159
|
#
|
|
2160
|
+
# @!attribute [rw] expiration_time
|
|
2161
|
+
# The expiry time of this delegation request
|
|
2162
|
+
#
|
|
2163
|
+
# See the [Understanding the Request
|
|
2164
|
+
# Lifecycle](IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle)
|
|
2165
|
+
# for details on the life time of a delegation request at each state.
|
|
2166
|
+
# @return [Time]
|
|
2167
|
+
#
|
|
2160
2168
|
# @!attribute [rw] requestor_id
|
|
2161
2169
|
# Identity of the requestor of this delegation request. This will be
|
|
2162
2170
|
# an Amazon Web Services account ID.
|
|
@@ -2224,6 +2232,7 @@ module Aws::IAM
|
|
|
2224
2232
|
:owner_id,
|
|
2225
2233
|
:approver_id,
|
|
2226
2234
|
:state,
|
|
2235
|
+
:expiration_time,
|
|
2227
2236
|
:requestor_id,
|
|
2228
2237
|
:requestor_name,
|
|
2229
2238
|
:create_date,
|
data/lib/aws-sdk-iam.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -351,6 +351,7 @@ module Aws::IAM
|
|
|
351
351
|
attr_accessor owner_id: ::String
|
|
352
352
|
attr_accessor approver_id: ::String
|
|
353
353
|
attr_accessor state: ("UNASSIGNED" | "ASSIGNED" | "PENDING_APPROVAL" | "FINALIZED" | "ACCEPTED" | "REJECTED" | "EXPIRED")
|
|
354
|
+
attr_accessor expiration_time: ::Time
|
|
354
355
|
attr_accessor requestor_id: ::String
|
|
355
356
|
attr_accessor requestor_name: ::String
|
|
356
357
|
attr_accessor create_date: ::Time
|