Class: Google::Apis::ComputeBeta::RoutersScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::RoutersScopedList
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
-
#routers ⇒ Array<Google::Apis::ComputeBeta::Router>
List of routers contained in this scope.
-
#warning ⇒ Google::Apis::ComputeBeta::RoutersScopedList::Warning
Informational warning which replaces the list of routers when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RoutersScopedList
constructor
A new instance of RoutersScopedList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ RoutersScopedList
Returns a new instance of RoutersScopedList
15955 15956 15957 |
# File 'generated/google/apis/compute_beta/classes.rb', line 15955 def initialize(**args) update!(**args) end |
Instance Attribute Details
#routers ⇒ Array<Google::Apis::ComputeBeta::Router>
List of routers contained in this scope.
Corresponds to the JSON property routers
15947 15948 15949 |
# File 'generated/google/apis/compute_beta/classes.rb', line 15947 def routers @routers end |
#warning ⇒ Google::Apis::ComputeBeta::RoutersScopedList::Warning
Informational warning which replaces the list of routers when the list is
empty.
Corresponds to the JSON property warning
15953 15954 15955 |
# File 'generated/google/apis/compute_beta/classes.rb', line 15953 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15960 15961 15962 15963 |
# File 'generated/google/apis/compute_beta/classes.rb', line 15960 def update!(**args) @routers = args[:routers] if args.key?(:routers) @warning = args[:warning] if args.key?(:warning) end |