Class: Google::Apis::ComputeBeta::Condition
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::Condition
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
This is deprecated and has no effect. Do not use.
Instance Attribute Summary collapse
-
#iam ⇒ String
This is deprecated and has no effect.
-
#op ⇒ String
This is deprecated and has no effect.
-
#svc ⇒ String
This is deprecated and has no effect.
-
#sys ⇒ String
This is deprecated and has no effect.
-
#values ⇒ Array<String>
This is deprecated and has no effect.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Condition
constructor
A new instance of Condition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Condition
Returns a new instance of Condition.
5351 5352 5353 |
# File 'lib/google/apis/compute_beta/classes.rb', line 5351 def initialize(**args) update!(**args) end |
Instance Attribute Details
#iam ⇒ String
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property iam
5329 5330 5331 |
# File 'lib/google/apis/compute_beta/classes.rb', line 5329 def iam @iam end |
#op ⇒ String
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property op
5334 5335 5336 |
# File 'lib/google/apis/compute_beta/classes.rb', line 5334 def op @op end |
#svc ⇒ String
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property svc
5339 5340 5341 |
# File 'lib/google/apis/compute_beta/classes.rb', line 5339 def svc @svc end |
#sys ⇒ String
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property sys
5344 5345 5346 |
# File 'lib/google/apis/compute_beta/classes.rb', line 5344 def sys @sys end |
#values ⇒ Array<String>
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property values
5349 5350 5351 |
# File 'lib/google/apis/compute_beta/classes.rb', line 5349 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5356 5357 5358 5359 5360 5361 5362 |
# File 'lib/google/apis/compute_beta/classes.rb', line 5356 def update!(**args) @iam = args[:iam] if args.key?(:iam) @op = args[:op] if args.key?(:op) @svc = args[:svc] if args.key?(:svc) @sys = args[:sys] if args.key?(:sys) @values = args[:values] if args.key?(:values) end |