Class: Google::Apis::SecuritycenterV1::Object
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Object
- 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
Kubernetes object related to the finding, uniquely identified by GKNN. Used if the object Kind is not one of Pod, Node, NodePool, Binding, or AccessReview.
Instance Attribute Summary collapse
-
#containers ⇒ Array<Google::Apis::SecuritycenterV1::Container>
Pod containers associated with this finding, if any.
-
#group ⇒ String
Kubernetes object group, such as "policy.k8s.io/v1".
-
#kind ⇒ String
Kubernetes object kind, such as "Namespace".
-
#name ⇒ String
Kubernetes object name.
-
#ns ⇒ String
Kubernetes object namespace.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Object
constructor
A new instance of Object.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Object
Returns a new instance of Object.
9571 9572 9573 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#containers ⇒ Array<Google::Apis::SecuritycenterV1::Container>
Pod containers associated with this finding, if any.
Corresponds to the JSON property containers
9546 9547 9548 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9546 def containers @containers end |
#group ⇒ String
Kubernetes object group, such as "policy.k8s.io/v1".
Corresponds to the JSON property group
9551 9552 9553 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9551 def group @group end |
#kind ⇒ String
Kubernetes object kind, such as "Namespace".
Corresponds to the JSON property kind
9556 9557 9558 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9556 def kind @kind end |
#name ⇒ String
Kubernetes object name. For details see https://kubernetes.io/docs/concepts/
overview/working-with-objects/names/.
Corresponds to the JSON property name
9562 9563 9564 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9562 def name @name end |
#ns ⇒ String
Kubernetes object namespace. Must be a valid DNS label. Named "ns" to avoid
collision with C++ namespace keyword. For details see https://kubernetes.io/
docs/tasks/administer-cluster/namespaces/.
Corresponds to the JSON property ns
9569 9570 9571 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9569 def ns @ns end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9576 9577 9578 9579 9580 9581 9582 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9576 def update!(**args) @containers = args[:containers] if args.key?(:containers) @group = args[:group] if args.key?(:group) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @ns = args[:ns] if args.key?(:ns) end |