class Google::Apis::ComputeV1::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_v1/classes.rb, line 9548
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_v1/classes.rb, line 9553
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