aws-sdk-securityagent 1.6.0 → 1.7.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-securityagent/client.rb +2144 -22
- data/lib/aws-sdk-securityagent/client_api.rb +1373 -0
- data/lib/aws-sdk-securityagent/errors.rb +16 -0
- data/lib/aws-sdk-securityagent/types.rb +4230 -510
- data/lib/aws-sdk-securityagent.rb +1 -1
- data/sig/client.rbs +683 -15
- data/sig/errors.rbs +3 -0
- data/sig/params.rbs +10 -4
- data/sig/types.rbs +1001 -11
- metadata +1 -1
data/sig/errors.rbs
CHANGED
|
@@ -23,6 +23,9 @@ module Aws
|
|
|
23
23
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
|
24
24
|
def message: () -> ::String
|
|
25
25
|
end
|
|
26
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
|
27
|
+
def message: () -> ::String
|
|
28
|
+
end
|
|
26
29
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
|
27
30
|
def message: () -> ::String
|
|
28
31
|
def service_code: () -> ::String
|
data/sig/params.rbs
CHANGED
|
@@ -33,10 +33,7 @@ module Aws
|
|
|
33
33
|
Params::actor
|
|
34
34
|
]?,
|
|
35
35
|
documents: Array[
|
|
36
|
-
|
|
37
|
-
s3_location: ::String?,
|
|
38
|
-
artifact_id: ::String?
|
|
39
|
-
}
|
|
36
|
+
Params::document_info
|
|
40
37
|
]?,
|
|
41
38
|
source_code: Array[
|
|
42
39
|
{
|
|
@@ -61,6 +58,15 @@ module Aws
|
|
|
61
58
|
description: ::String?
|
|
62
59
|
}
|
|
63
60
|
|
|
61
|
+
type document_info = {
|
|
62
|
+
s3_location: ::String?,
|
|
63
|
+
artifact_id: ::String?,
|
|
64
|
+
integrated_document: {
|
|
65
|
+
integration_id: ::String,
|
|
66
|
+
resource_id: ::String
|
|
67
|
+
}?
|
|
68
|
+
}
|
|
69
|
+
|
|
64
70
|
type network_traffic_config = {
|
|
65
71
|
rules: Array[
|
|
66
72
|
{
|