Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/remotebuildexecution_v2/classes.rb,
lib/google/apis/remotebuildexecution_v2/representations.rb,
lib/google/apis/remotebuildexecution_v2/representations.rb
Overview
Defines whether a feature can be used or what values are accepted.
Instance Attribute Summary collapse
-
#allowed_values ⇒ Array<String>
A list of acceptable values.
-
#policy ⇒ String
The policy of the feature.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature
constructor
A new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature
Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature.
2701 2702 2703 |
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2701 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allowed_values ⇒ Array<String>
A list of acceptable values. Only effective when the policy is RESTRICTED
.
Corresponds to the JSON property allowedValues
2694 2695 2696 |
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2694 def allowed_values @allowed_values end |
#policy ⇒ String
The policy of the feature.
Corresponds to the JSON property policy
2699 2700 2701 |
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2699 def policy @policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2706 2707 2708 2709 |
# File 'lib/google/apis/remotebuildexecution_v2/classes.rb', line 2706 def update!(**args) @allowed_values = args[:allowed_values] if args.key?(:allowed_values) @policy = args[:policy] if args.key?(:policy) end |