Class: Google::Apis::SecuritycenterV1beta2::Kubernetes
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta2::Kubernetes
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta2/classes.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb
Overview
Kubernetes-related attributes.
Instance Attribute Summary collapse
-
#access_reviews ⇒ Array<Google::Apis::SecuritycenterV1beta2::AccessReview>
Provides information on any Kubernetes access reviews (i.e. privilege checks) relevant to the finding.
-
#bindings ⇒ Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1Binding>
Provides Kubernetes role binding information for findings that involve RoleBindings or ClusterRoleBindings.
-
#node_pools ⇒ Array<Google::Apis::SecuritycenterV1beta2::NodePool>
GKE Node Pools associated with the finding.
-
#nodes ⇒ Array<Google::Apis::SecuritycenterV1beta2::Node>
Provides Kubernetes Node information.
-
#pods ⇒ Array<Google::Apis::SecuritycenterV1beta2::Pod>
Kubernetes Pods associated with the finding.
-
#roles ⇒ Array<Google::Apis::SecuritycenterV1beta2::Role>
Provides Kubernetes role information for findings that involve Roles or ClusterRoles.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Kubernetes
constructor
A new instance of Kubernetes.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Kubernetes
Returns a new instance of Kubernetes.
2239 2240 2241 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2239 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_reviews ⇒ Array<Google::Apis::SecuritycenterV1beta2::AccessReview>
Provides information on any Kubernetes access reviews (i.e. privilege checks)
relevant to the finding.
Corresponds to the JSON property accessReviews
2208 2209 2210 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2208 def access_reviews @access_reviews end |
#bindings ⇒ Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1Binding>
Provides Kubernetes role binding information for findings that involve
RoleBindings or ClusterRoleBindings.
Corresponds to the JSON property bindings
2214 2215 2216 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2214 def bindings @bindings end |
#node_pools ⇒ Array<Google::Apis::SecuritycenterV1beta2::NodePool>
GKE Node Pools associated with the finding. This field will contain NodePool
information for each Node, when it is available.
Corresponds to the JSON property nodePools
2220 2221 2222 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2220 def node_pools @node_pools end |
#nodes ⇒ Array<Google::Apis::SecuritycenterV1beta2::Node>
Provides Kubernetes Node information.
Corresponds to the JSON property nodes
2225 2226 2227 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2225 def nodes @nodes end |
#pods ⇒ Array<Google::Apis::SecuritycenterV1beta2::Pod>
Kubernetes Pods associated with the finding. This field will contain Pod
records for each container that is owned by a Pod.
Corresponds to the JSON property pods
2231 2232 2233 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2231 def pods @pods end |
#roles ⇒ Array<Google::Apis::SecuritycenterV1beta2::Role>
Provides Kubernetes role information for findings that involve Roles or
ClusterRoles.
Corresponds to the JSON property roles
2237 2238 2239 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2237 def roles @roles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2244 2245 2246 2247 2248 2249 2250 2251 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2244 def update!(**args) @access_reviews = args[:access_reviews] if args.key?(:access_reviews) @bindings = args[:bindings] if args.key?(:bindings) @node_pools = args[:node_pools] if args.key?(:node_pools) @nodes = args[:nodes] if args.key?(:nodes) @pods = args[:pods] if args.key?(:pods) @roles = args[:roles] if args.key?(:roles) end |