aws-sdk-ssm 1.196.0 → 1.197.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-ssm/client.rb +9 -2
- data/lib/aws-sdk-ssm/client_api.rb +5 -0
- data/lib/aws-sdk-ssm/types.rb +19 -3
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +2 -1
- 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: dabdfa28b05c1fe8368a56802905ebbed502f9ef73f8416aea67836a2696f863
|
4
|
+
data.tar.gz: b20552f9633da80bdb4bce066d8d121571a9875b781702420e4977a1cc572fcc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6f59af1b32b0e3e7031a906b6421821d28a1df7edb7ac1765c5daa57ae4ed5f45a94a996aeffe7f228ef5f63a3c7208abcecdb4a53815899a1e95150071d10f
|
7
|
+
data.tar.gz: d0ae7a76944117afc7169fad5f87f35a23704f408ef54a3bcf40c455ae0db4652967dab06ecb62048774f0b66854c94631ef73d4fc4d27c7e2c43ec7b776eaa2
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.197.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -3744,6 +3744,12 @@ module Aws::SSM
|
|
3744
3744
|
# @option params [required, String] :name
|
3745
3745
|
# The name of the SSM document.
|
3746
3746
|
#
|
3747
|
+
# <note markdown="1"> If you're calling a shared SSM document from a different Amazon Web
|
3748
|
+
# Services account, `Name` is the full Amazon Resource Name (ARN) of the
|
3749
|
+
# document.
|
3750
|
+
#
|
3751
|
+
# </note>
|
3752
|
+
#
|
3747
3753
|
# @option params [String] :document_version
|
3748
3754
|
# The document version for which you want information. Can be a specific
|
3749
3755
|
# version or the default version.
|
@@ -5673,7 +5679,7 @@ module Aws::SSM
|
|
5673
5679
|
# next_token: "NextToken",
|
5674
5680
|
# filters: [
|
5675
5681
|
# {
|
5676
|
-
# key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status, SessionId
|
5682
|
+
# key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status, SessionId, AccessType
|
5677
5683
|
# value: "SessionFilterValue", # required
|
5678
5684
|
# },
|
5679
5685
|
# ],
|
@@ -5694,6 +5700,7 @@ module Aws::SSM
|
|
5694
5700
|
# resp.sessions[0].output_url.s3_output_url #=> String
|
5695
5701
|
# resp.sessions[0].output_url.cloud_watch_output_url #=> String
|
5696
5702
|
# resp.sessions[0].max_session_duration #=> String
|
5703
|
+
# resp.sessions[0].access_type #=> String, one of "Standard", "JustInTime"
|
5697
5704
|
# resp.next_token #=> String
|
5698
5705
|
#
|
5699
5706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeSessions AWS API Documentation
|
@@ -13450,7 +13457,7 @@ module Aws::SSM
|
|
13450
13457
|
tracer: tracer
|
13451
13458
|
)
|
13452
13459
|
context[:gem_name] = 'aws-sdk-ssm'
|
13453
|
-
context[:gem_version] = '1.
|
13460
|
+
context[:gem_version] = '1.197.0'
|
13454
13461
|
Seahorse::Client::Request.new(handlers, context)
|
13455
13462
|
end
|
13456
13463
|
|
@@ -19,6 +19,7 @@ module Aws::SSM
|
|
19
19
|
AccessKeySecretType = Shapes::StringShape.new(name: 'AccessKeySecretType')
|
20
20
|
AccessRequestId = Shapes::StringShape.new(name: 'AccessRequestId')
|
21
21
|
AccessRequestStatus = Shapes::StringShape.new(name: 'AccessRequestStatus')
|
22
|
+
AccessType = Shapes::StringShape.new(name: 'AccessType')
|
22
23
|
Account = Shapes::StringShape.new(name: 'Account')
|
23
24
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
24
25
|
AccountIdList = Shapes::ListShape.new(name: 'AccountIdList')
|
@@ -4607,6 +4608,7 @@ module Aws::SSM
|
|
4607
4608
|
Session.add_member(:details, Shapes::ShapeRef.new(shape: SessionDetails, location_name: "Details"))
|
4608
4609
|
Session.add_member(:output_url, Shapes::ShapeRef.new(shape: SessionManagerOutputUrl, location_name: "OutputUrl"))
|
4609
4610
|
Session.add_member(:max_session_duration, Shapes::ShapeRef.new(shape: MaxSessionDuration, location_name: "MaxSessionDuration"))
|
4611
|
+
Session.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, location_name: "AccessType"))
|
4610
4612
|
Session.struct_class = Types::Session
|
4611
4613
|
|
4612
4614
|
SessionFilter.add_member(:key, Shapes::ShapeRef.new(shape: SessionFilterKey, required: true, location_name: "key"))
|
@@ -5216,6 +5218,7 @@ module Aws::SSM
|
|
5216
5218
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentContent)
|
5217
5219
|
o.errors << Shapes::ShapeRef.new(shape: DocumentLimitExceeded)
|
5218
5220
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentSchemaVersion)
|
5221
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
5219
5222
|
end)
|
5220
5223
|
|
5221
5224
|
api.add_operation(:create_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5313,6 +5316,7 @@ module Aws::SSM
|
|
5313
5316
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
5314
5317
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentOperation)
|
5315
5318
|
o.errors << Shapes::ShapeRef.new(shape: AssociatedInstances)
|
5319
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
5316
5320
|
end)
|
5317
5321
|
|
5318
5322
|
api.add_operation(:delete_inventory, Seahorse::Model::Operation.new.tap do |o|
|
@@ -7027,6 +7031,7 @@ module Aws::SSM
|
|
7027
7031
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
7028
7032
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentOperation)
|
7029
7033
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentVersion)
|
7034
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
7030
7035
|
end)
|
7031
7036
|
|
7032
7037
|
api.add_operation(:update_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -5216,7 +5216,7 @@ module Aws::SSM
|
|
5216
5216
|
|
5217
5217
|
# @!attribute [rw] account_ids
|
5218
5218
|
# The account IDs that have permission to use this document. The ID
|
5219
|
-
# can be either an Amazon Web Services account or
|
5219
|
+
# can be either an Amazon Web Services account number or `all`.
|
5220
5220
|
# @return [Array<String>]
|
5221
5221
|
#
|
5222
5222
|
# @!attribute [rw] account_sharing_info_list
|
@@ -5241,6 +5241,12 @@ module Aws::SSM
|
|
5241
5241
|
|
5242
5242
|
# @!attribute [rw] name
|
5243
5243
|
# The name of the SSM document.
|
5244
|
+
#
|
5245
|
+
# <note markdown="1"> If you're calling a shared SSM document from a different Amazon Web
|
5246
|
+
# Services account, `Name` is the full Amazon Resource Name (ARN) of
|
5247
|
+
# the document.
|
5248
|
+
#
|
5249
|
+
# </note>
|
5244
5250
|
# @return [String]
|
5245
5251
|
#
|
5246
5252
|
# @!attribute [rw] document_version
|
@@ -10042,7 +10048,7 @@ module Aws::SSM
|
|
10042
10048
|
#
|
10043
10049
|
# Valid filter key values: ActivationIds \| AgentVersion \|
|
10044
10050
|
# AssociationStatus \| IamRole \| InstanceIds \| PingStatus \|
|
10045
|
-
#
|
10051
|
+
# PlatformType \| ResourceType \| SourceIds \| SourceTypes \|
|
10046
10052
|
# "tag-key" \| "tag:`{keyname}`
|
10047
10053
|
#
|
10048
10054
|
# * Valid values for the `AssociationStatus` filter key: Success \|
|
@@ -18029,6 +18035,15 @@ module Aws::SSM
|
|
18029
18035
|
# The maximum duration of a session before it terminates.
|
18030
18036
|
# @return [String]
|
18031
18037
|
#
|
18038
|
+
# @!attribute [rw] access_type
|
18039
|
+
# `Standard` access type is the default for Session Manager sessions.
|
18040
|
+
# `JustInTime` is the access type for [Just-in-time node access][1].
|
18041
|
+
#
|
18042
|
+
#
|
18043
|
+
#
|
18044
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-just-in-time-node-access.html
|
18045
|
+
# @return [String]
|
18046
|
+
#
|
18032
18047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Session AWS API Documentation
|
18033
18048
|
#
|
18034
18049
|
class Session < Struct.new(
|
@@ -18042,7 +18057,8 @@ module Aws::SSM
|
|
18042
18057
|
:reason,
|
18043
18058
|
:details,
|
18044
18059
|
:output_url,
|
18045
|
-
:max_session_duration
|
18060
|
+
:max_session_duration,
|
18061
|
+
:access_type)
|
18046
18062
|
SENSITIVE = []
|
18047
18063
|
include Aws::Structure
|
18048
18064
|
end
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1299,7 +1299,7 @@ module Aws
|
|
1299
1299
|
?next_token: ::String,
|
1300
1300
|
?filters: Array[
|
1301
1301
|
{
|
1302
|
-
key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId"),
|
1302
|
+
key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId" | "AccessType"),
|
1303
1303
|
value: ::String
|
1304
1304
|
},
|
1305
1305
|
]
|
data/sig/types.rbs
CHANGED
@@ -3973,11 +3973,12 @@ module Aws::SSM
|
|
3973
3973
|
attr_accessor details: ::String
|
3974
3974
|
attr_accessor output_url: Types::SessionManagerOutputUrl
|
3975
3975
|
attr_accessor max_session_duration: ::String
|
3976
|
+
attr_accessor access_type: ("Standard" | "JustInTime")
|
3976
3977
|
SENSITIVE: []
|
3977
3978
|
end
|
3978
3979
|
|
3979
3980
|
class SessionFilter
|
3980
|
-
attr_accessor key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId")
|
3981
|
+
attr_accessor key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId" | "AccessType")
|
3981
3982
|
attr_accessor value: ::String
|
3982
3983
|
SENSITIVE: []
|
3983
3984
|
end
|