aws-sdk-inspector2 1.75.0 → 1.76.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-inspector2/client.rb +1864 -105
- data/lib/aws-sdk-inspector2/client_api.rb +618 -1
- data/lib/aws-sdk-inspector2/types.rb +2354 -159
- data/lib/aws-sdk-inspector2/waiters.rb +225 -0
- data/lib/aws-sdk-inspector2.rb +2 -1
- data/sig/client.rbs +481 -11
- data/sig/params.rbs +197 -0
- data/sig/types.rbs +518 -20
- data/sig/waiters.rbs +129 -0
- metadata +2 -1
data/sig/waiters.rbs
CHANGED
|
@@ -8,6 +8,135 @@
|
|
|
8
8
|
module Aws
|
|
9
9
|
module Inspector2
|
|
10
10
|
module Waiters
|
|
11
|
+
|
|
12
|
+
class ConnectorConnected
|
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
15
|
+
|
|
16
|
+
def wait: (
|
|
17
|
+
?max_results: ::Integer,
|
|
18
|
+
?next_token: ::String,
|
|
19
|
+
?filter_criteria: {
|
|
20
|
+
connector_arns: Array[
|
|
21
|
+
{
|
|
22
|
+
comparison: ("EQUALS"),
|
|
23
|
+
value: ::String
|
|
24
|
+
}
|
|
25
|
+
]?,
|
|
26
|
+
accounts: Array[
|
|
27
|
+
{
|
|
28
|
+
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
|
29
|
+
value: ::String
|
|
30
|
+
}
|
|
31
|
+
]?,
|
|
32
|
+
aws_config_connector_arns: Array[
|
|
33
|
+
{
|
|
34
|
+
comparison: ("EQUALS"),
|
|
35
|
+
value: ::String
|
|
36
|
+
}
|
|
37
|
+
]?,
|
|
38
|
+
connector_type: Array[
|
|
39
|
+
{
|
|
40
|
+
comparison: ("EQUALS"),
|
|
41
|
+
value: ("CUSTOMER_MANAGED" | "SERVICE_LINKED")
|
|
42
|
+
}
|
|
43
|
+
]?,
|
|
44
|
+
provider: Array[
|
|
45
|
+
{
|
|
46
|
+
comparison: ("EQUALS"),
|
|
47
|
+
value: ("AZURE")
|
|
48
|
+
}
|
|
49
|
+
]?
|
|
50
|
+
}
|
|
51
|
+
) -> Client::_ListConnectorsResponseSuccess
|
|
52
|
+
| (?Hash[Symbol, untyped]) -> Client::_ListConnectorsResponseSuccess
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
class ConnectorDeleted
|
|
56
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
57
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
58
|
+
|
|
59
|
+
def wait: (
|
|
60
|
+
?max_results: ::Integer,
|
|
61
|
+
?next_token: ::String,
|
|
62
|
+
?filter_criteria: {
|
|
63
|
+
connector_arns: Array[
|
|
64
|
+
{
|
|
65
|
+
comparison: ("EQUALS"),
|
|
66
|
+
value: ::String
|
|
67
|
+
}
|
|
68
|
+
]?,
|
|
69
|
+
accounts: Array[
|
|
70
|
+
{
|
|
71
|
+
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
|
72
|
+
value: ::String
|
|
73
|
+
}
|
|
74
|
+
]?,
|
|
75
|
+
aws_config_connector_arns: Array[
|
|
76
|
+
{
|
|
77
|
+
comparison: ("EQUALS"),
|
|
78
|
+
value: ::String
|
|
79
|
+
}
|
|
80
|
+
]?,
|
|
81
|
+
connector_type: Array[
|
|
82
|
+
{
|
|
83
|
+
comparison: ("EQUALS"),
|
|
84
|
+
value: ("CUSTOMER_MANAGED" | "SERVICE_LINKED")
|
|
85
|
+
}
|
|
86
|
+
]?,
|
|
87
|
+
provider: Array[
|
|
88
|
+
{
|
|
89
|
+
comparison: ("EQUALS"),
|
|
90
|
+
value: ("AZURE")
|
|
91
|
+
}
|
|
92
|
+
]?
|
|
93
|
+
}
|
|
94
|
+
) -> Client::_ListConnectorsResponseSuccess
|
|
95
|
+
| (?Hash[Symbol, untyped]) -> Client::_ListConnectorsResponseSuccess
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
class ConnectorEnabled
|
|
99
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
100
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
101
|
+
|
|
102
|
+
def wait: (
|
|
103
|
+
?max_results: ::Integer,
|
|
104
|
+
?next_token: ::String,
|
|
105
|
+
?filter_criteria: {
|
|
106
|
+
connector_arns: Array[
|
|
107
|
+
{
|
|
108
|
+
comparison: ("EQUALS"),
|
|
109
|
+
value: ::String
|
|
110
|
+
}
|
|
111
|
+
]?,
|
|
112
|
+
accounts: Array[
|
|
113
|
+
{
|
|
114
|
+
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
|
115
|
+
value: ::String
|
|
116
|
+
}
|
|
117
|
+
]?,
|
|
118
|
+
aws_config_connector_arns: Array[
|
|
119
|
+
{
|
|
120
|
+
comparison: ("EQUALS"),
|
|
121
|
+
value: ::String
|
|
122
|
+
}
|
|
123
|
+
]?,
|
|
124
|
+
connector_type: Array[
|
|
125
|
+
{
|
|
126
|
+
comparison: ("EQUALS"),
|
|
127
|
+
value: ("CUSTOMER_MANAGED" | "SERVICE_LINKED")
|
|
128
|
+
}
|
|
129
|
+
]?,
|
|
130
|
+
provider: Array[
|
|
131
|
+
{
|
|
132
|
+
comparison: ("EQUALS"),
|
|
133
|
+
value: ("AZURE")
|
|
134
|
+
}
|
|
135
|
+
]?
|
|
136
|
+
}
|
|
137
|
+
) -> Client::_ListConnectorsResponseSuccess
|
|
138
|
+
| (?Hash[Symbol, untyped]) -> Client::_ListConnectorsResponseSuccess
|
|
139
|
+
end
|
|
11
140
|
end
|
|
12
141
|
end
|
|
13
142
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-inspector2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.76.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -65,6 +65,7 @@ files:
|
|
|
65
65
|
- lib/aws-sdk-inspector2/plugins/endpoints.rb
|
|
66
66
|
- lib/aws-sdk-inspector2/resource.rb
|
|
67
67
|
- lib/aws-sdk-inspector2/types.rb
|
|
68
|
+
- lib/aws-sdk-inspector2/waiters.rb
|
|
68
69
|
- sig/client.rbs
|
|
69
70
|
- sig/errors.rbs
|
|
70
71
|
- sig/params.rbs
|