class Google::Apis::NetworkmanagementV1::NetworkInfo

For display only. Metadata associated with a Compute Engine network.

Attributes

display_name[RW]

Name of a Compute Engine network. Corresponds to the JSON property `displayName` @return [String]

matched_ip_range[RW]

The IP range that matches the test. Corresponds to the JSON property `matchedIpRange` @return [String]

uri[RW]

URI of a Compute Engine network. Corresponds to the JSON property `uri` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/networkmanagement_v1/classes.rb, line 1078
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/networkmanagement_v1/classes.rb, line 1083
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