Class: Google::Apis::NetworkmanagementV1::NetworkInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1::NetworkInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1/classes.rb,
lib/google/apis/networkmanagement_v1/representations.rb,
lib/google/apis/networkmanagement_v1/representations.rb
Overview
For display only. Metadata associated with a Compute Engine network.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Name of a Compute Engine network.
-
#matched_ip_range ⇒ String
The IP range that matches the test.
-
#uri ⇒ String
URI of a Compute Engine network.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkInfo
constructor
A new instance of NetworkInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkInfo
Returns a new instance of NetworkInfo.
1694 1695 1696 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1694 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Name of a Compute Engine network.
Corresponds to the JSON property displayName
1682 1683 1684 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1682 def display_name @display_name end |
#matched_ip_range ⇒ String
The IP range that matches the test.
Corresponds to the JSON property matchedIpRange
1687 1688 1689 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1687 def matched_ip_range @matched_ip_range end |
#uri ⇒ String
URI of a Compute Engine network.
Corresponds to the JSON property uri
1692 1693 1694 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1692 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1699 1700 1701 1702 1703 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1699 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @matched_ip_range = args[:matched_ip_range] if args.key?(:matched_ip_range) @uri = args[:uri] if args.key?(:uri) end |