Class: Google::Apis::ComputeBeta::Rule
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::Rule
- 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
-
#action ⇒ String
This is deprecated and has no effect.
-
#conditions ⇒ Array<Google::Apis::ComputeBeta::Condition>
This is deprecated and has no effect.
-
#description ⇒ String
This is deprecated and has no effect.
-
#ins ⇒ Array<String>
This is deprecated and has no effect.
-
#log_configs ⇒ Array<Google::Apis::ComputeBeta::LogConfig>
This is deprecated and has no effect.
-
#not_ins ⇒ Array<String>
This is deprecated and has no effect.
-
#permissions ⇒ Array<String>
This is deprecated and has no effect.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Rule
constructor
A new instance of Rule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Rule
Returns a new instance of Rule.
31916 31917 31918 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31916 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property action
31884 31885 31886 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31884 def action @action end |
#conditions ⇒ Array<Google::Apis::ComputeBeta::Condition>
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property conditions
31889 31890 31891 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31889 def conditions @conditions end |
#description ⇒ String
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property description
31894 31895 31896 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31894 def description @description end |
#ins ⇒ Array<String>
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property ins
31899 31900 31901 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31899 def ins @ins end |
#log_configs ⇒ Array<Google::Apis::ComputeBeta::LogConfig>
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property logConfigs
31904 31905 31906 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31904 def log_configs @log_configs end |
#not_ins ⇒ Array<String>
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property notIns
31909 31910 31911 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31909 def not_ins @not_ins end |
#permissions ⇒ Array<String>
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property permissions
31914 31915 31916 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31914 def @permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31921 31922 31923 31924 31925 31926 31927 31928 31929 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31921 def update!(**args) @action = args[:action] if args.key?(:action) @conditions = args[:conditions] if args.key?(:conditions) @description = args[:description] if args.key?(:description) @ins = args[:ins] if args.key?(:ins) @log_configs = args[:log_configs] if args.key?(:log_configs) @not_ins = args[:not_ins] if args.key?(:not_ins) @permissions = args[:permissions] if args.key?(:permissions) end |