class Google::Apis::ComputeBeta::GuestAttributesEntry
A guest attributes namespace/key/value entry.
Attributes
key[RW]
Key for the guest attribute entry. Corresponds to the JSON property `key` @return [String]
namespace[RW]
Namespace for the guest attribute entry. Corresponds to the JSON property `namespace` @return [String]
value[RW]
Value for the guest attribute entry. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/compute_beta/classes.rb, line 9445 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/compute_beta/classes.rb, line 9450 def update!(**args) @key = args[:key] if args.key?(:key) @namespace = args[:namespace] if args.key?(:namespace) @value = args[:value] if args.key?(:value) end