aws-sdk-ssm 1.193.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +10 -4
- data/lib/aws-sdk-ssm/client_api.rb +160 -155
- 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 +6 -9
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
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.197.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -19,7 +18,7 @@ dependencies:
|
|
19
18
|
version: '3'
|
20
19
|
- - ">="
|
21
20
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +28,7 @@ dependencies:
|
|
29
28
|
version: '3'
|
30
29
|
- - ">="
|
31
30
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
33
32
|
- !ruby/object:Gem::Dependency
|
34
33
|
name: aws-sigv4
|
35
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -78,7 +77,6 @@ licenses:
|
|
78
77
|
metadata:
|
79
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssm
|
80
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssm/CHANGELOG.md
|
81
|
-
post_install_message:
|
82
80
|
rdoc_options: []
|
83
81
|
require_paths:
|
84
82
|
- lib
|
@@ -86,15 +84,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
86
84
|
requirements:
|
87
85
|
- - ">="
|
88
86
|
- !ruby/object:Gem::Version
|
89
|
-
version: '2.
|
87
|
+
version: '2.7'
|
90
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
89
|
requirements:
|
92
90
|
- - ">="
|
93
91
|
- !ruby/object:Gem::Version
|
94
92
|
version: '0'
|
95
93
|
requirements: []
|
96
|
-
rubygems_version: 3.
|
97
|
-
signing_key:
|
94
|
+
rubygems_version: 3.6.7
|
98
95
|
specification_version: 4
|
99
96
|
summary: AWS SDK for Ruby - Amazon SSM
|
100
97
|
test_files: []
|