Class: Google::Apis::SecuritycenterV1::AccessReview
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::AccessReview
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Overview
Conveys information about a Kubernetes access review (such as one returned by
a kubectl auth can-i
command) that was involved in a
finding.
Instance Attribute Summary collapse
-
#group ⇒ String
The API group of the resource.
-
#name ⇒ String
The name of the resource being requested.
-
#ns ⇒ String
Namespace of the action being requested.
-
#resource ⇒ String
The optional resource type requested.
-
#subresource ⇒ String
The optional subresource type.
-
#verb ⇒ String
A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy.
-
#version ⇒ String
The API version of the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccessReview
constructor
A new instance of AccessReview.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AccessReview
Returns a new instance of AccessReview.
173 174 175 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 173 def initialize(**args) update!(**args) end |
Instance Attribute Details
#group ⇒ String
The API group of the resource. "*" means all.
Corresponds to the JSON property group
139 140 141 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 139 def group @group end |
#name ⇒ String
The name of the resource being requested. Empty means all.
Corresponds to the JSON property name
144 145 146 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 144 def name @name end |
#ns ⇒ String
Namespace of the action being requested. Currently, there is no distinction
between no namespace and all namespaces. Both are represented by "" (empty).
Corresponds to the JSON property ns
150 151 152 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 150 def ns @ns end |
#resource ⇒ String
The optional resource type requested. "*" means all.
Corresponds to the JSON property resource
155 156 157 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 155 def resource @resource end |
#subresource ⇒ String
The optional subresource type.
Corresponds to the JSON property subresource
160 161 162 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 160 def subresource @subresource end |
#verb ⇒ String
A Kubernetes resource API verb, like get, list, watch, create, update, delete,
proxy. "*" means all.
Corresponds to the JSON property verb
166 167 168 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 166 def verb @verb end |
#version ⇒ String
The API version of the resource. "*" means all.
Corresponds to the JSON property version
171 172 173 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 171 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
178 179 180 181 182 183 184 185 186 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 178 def update!(**args) @group = args[:group] if args.key?(:group) @name = args[:name] if args.key?(:name) @ns = args[:ns] if args.key?(:ns) @resource = args[:resource] if args.key?(:resource) @subresource = args[:subresource] if args.key?(:subresource) @verb = args[:verb] if args.key?(:verb) @version = args[:version] if args.key?(:version) end |