class Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Parameter

Definition for extended entitlement parameters.

Attributes

editable[RW]

Output only. Specifies whether this parameter is allowed to be changed. For example, for a Google Workspace Business Starter entitlement in commitment plan, num_units is editable when entitlement is active. Corresponds to the JSON property `editable` @return [Boolean]

editable?[RW]

Output only. Specifies whether this parameter is allowed to be changed. For example, for a Google Workspace Business Starter entitlement in commitment plan, num_units is editable when entitlement is active. Corresponds to the JSON property `editable` @return [Boolean]

name[RW]

Name of the parameter. Corresponds to the JSON property `name` @return [String]

value[RW]

Data type and value of a parameter. Corresponds to the JSON property `value` @return [Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Value]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudchannel_v1/classes.rb, line 2731
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudchannel_v1/classes.rb, line 2736
def update!(**args)
  @editable = args[:editable] if args.key?(:editable)
  @name = args[:name] if args.key?(:name)
  @value = args[:value] if args.key?(:value)
end