Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb

Overview

Defines whether a feature can be used or what values are accepted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature.



2502
2503
2504
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2502

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#allowed_valuesArray<String>

A list of acceptable values. Only effective when the policy is RESTRICTED. Corresponds to the JSON property allowedValues

Returns:

  • (Array<String>)


2495
2496
2497
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2495

def allowed_values
  @allowed_values
end

#policyString

The policy of the feature. Corresponds to the JSON property policy

Returns:

  • (String)


2500
2501
2502
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2500

def policy
  @policy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2507
2508
2509
2510
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2507

def update!(**args)
  @allowed_values = args[:allowed_values] if args.key?(:allowed_values)
  @policy = args[:policy] if args.key?(:policy)
end