class Google::Apis::GkehubV1::ConfigManagementGroupVersionKind
A Kubernetes object's GVK
Attributes
group[RW]
Kubernetes Group Corresponds to the JSON property `group` @return [String]
kind[RW]
Kubernetes Kind Corresponds to the JSON property `kind` @return [String]
version[RW]
Kubernetes Version Corresponds to the JSON property `version` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gkehub_v1/classes.rb, line 574 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gkehub_v1/classes.rb, line 579 def update!(**args) @group = args[:group] if args.key?(:group) @kind = args[:kind] if args.key?(:kind) @version = args[:version] if args.key?(:version) end