aws-sdk-ssm 1.164.0 → 1.166.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +215 -95
- data/lib/aws-sdk-ssm/client_api.rb +21 -0
- data/lib/aws-sdk-ssm/errors.rb +48 -0
- data/lib/aws-sdk-ssm/types.rb +235 -121
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/errors.rbs +9 -0
- data/sig/types.rbs +17 -0
- metadata +2 -2
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1158,7 +1158,8 @@ module Aws
|
|
1158
1158
|
},
|
1159
1159
|
],
|
1160
1160
|
?max_results: ::Integer,
|
1161
|
-
?next_token: ::String
|
1161
|
+
?next_token: ::String,
|
1162
|
+
?shared: bool
|
1162
1163
|
) -> _DescribeParametersResponseSuccess
|
1163
1164
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeParametersResponseSuccess
|
1164
1165
|
|
data/sig/errors.rbs
CHANGED
@@ -245,6 +245,9 @@ module Aws
|
|
245
245
|
def type_name: () -> ::String
|
246
246
|
def message: () -> ::String
|
247
247
|
end
|
248
|
+
class MalformedResourcePolicyDocumentException < ::Aws::Errors::ServiceError
|
249
|
+
def message: () -> ::String
|
250
|
+
end
|
248
251
|
class MaxDocumentSizeExceeded < ::Aws::Errors::ServiceError
|
249
252
|
def message: () -> ::String
|
250
253
|
end
|
@@ -344,6 +347,9 @@ module Aws
|
|
344
347
|
class ResourceLimitExceededException < ::Aws::Errors::ServiceError
|
345
348
|
def message: () -> ::String
|
346
349
|
end
|
350
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
351
|
+
def message: () -> ::String
|
352
|
+
end
|
347
353
|
class ResourcePolicyConflictException < ::Aws::Errors::ServiceError
|
348
354
|
def message: () -> ::String
|
349
355
|
end
|
@@ -356,6 +362,9 @@ module Aws
|
|
356
362
|
def limit_type: () -> ::String
|
357
363
|
def message: () -> ::String
|
358
364
|
end
|
365
|
+
class ResourcePolicyNotFoundException < ::Aws::Errors::ServiceError
|
366
|
+
def message: () -> ::String
|
367
|
+
end
|
359
368
|
class ServiceSettingNotFound < ::Aws::Errors::ServiceError
|
360
369
|
def message: () -> ::String
|
361
370
|
end
|
data/sig/types.rbs
CHANGED
@@ -1254,6 +1254,7 @@ module Aws::SSM
|
|
1254
1254
|
attr_accessor parameter_filters: ::Array[Types::ParameterStringFilter]
|
1255
1255
|
attr_accessor max_results: ::Integer
|
1256
1256
|
attr_accessor next_token: ::String
|
1257
|
+
attr_accessor shared: bool
|
1257
1258
|
SENSITIVE: []
|
1258
1259
|
end
|
1259
1260
|
|
@@ -2813,6 +2814,11 @@ module Aws::SSM
|
|
2813
2814
|
SENSITIVE: [:values]
|
2814
2815
|
end
|
2815
2816
|
|
2817
|
+
class MalformedResourcePolicyDocumentException
|
2818
|
+
attr_accessor message: ::String
|
2819
|
+
SENSITIVE: []
|
2820
|
+
end
|
2821
|
+
|
2816
2822
|
class MaxDocumentSizeExceeded
|
2817
2823
|
attr_accessor message: ::String
|
2818
2824
|
SENSITIVE: []
|
@@ -3142,6 +3148,7 @@ module Aws::SSM
|
|
3142
3148
|
|
3143
3149
|
class ParameterMetadata
|
3144
3150
|
attr_accessor name: ::String
|
3151
|
+
attr_accessor arn: ::String
|
3145
3152
|
attr_accessor type: ("String" | "StringList" | "SecureString")
|
3146
3153
|
attr_accessor key_id: ::String
|
3147
3154
|
attr_accessor last_modified_date: ::Time
|
@@ -3577,6 +3584,11 @@ module Aws::SSM
|
|
3577
3584
|
SENSITIVE: []
|
3578
3585
|
end
|
3579
3586
|
|
3587
|
+
class ResourceNotFoundException
|
3588
|
+
attr_accessor message: ::String
|
3589
|
+
SENSITIVE: []
|
3590
|
+
end
|
3591
|
+
|
3580
3592
|
class ResourcePolicyConflictException
|
3581
3593
|
attr_accessor message: ::String
|
3582
3594
|
SENSITIVE: []
|
@@ -3595,6 +3607,11 @@ module Aws::SSM
|
|
3595
3607
|
SENSITIVE: []
|
3596
3608
|
end
|
3597
3609
|
|
3610
|
+
class ResourcePolicyNotFoundException
|
3611
|
+
attr_accessor message: ::String
|
3612
|
+
SENSITIVE: []
|
3613
|
+
end
|
3614
|
+
|
3598
3615
|
class ResultAttribute
|
3599
3616
|
attr_accessor type_name: ::String
|
3600
3617
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.166.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-
|
11
|
+
date: 2024-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|