Class: Google::Apis::NetworkmanagementV1beta1::NetworkInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkmanagement_v1beta1/classes.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NetworkInfo

Returns a new instance of NetworkInfo.



1701
1702
1703
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1701

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#display_nameString

Name of a Compute Engine network. Corresponds to the JSON property displayName

Returns:

  • (String)


1689
1690
1691
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1689

def display_name
  @display_name
end

#matched_ip_rangeString

The IP range that matches the test. Corresponds to the JSON property matchedIpRange

Returns:

  • (String)


1694
1695
1696
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1694

def matched_ip_range
  @matched_ip_range
end

#uriString

URI of a Compute Engine network. Corresponds to the JSON property uri

Returns:

  • (String)


1699
1700
1701
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1699

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1706
1707
1708
1709
1710
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 1706

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