Class: Google::Apis::NetworkmanagementV1beta1::ForwardingRuleInfo

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 forwarding rule.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ForwardingRuleInfo

Returns a new instance of ForwardingRuleInfo.



837
838
839
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 837

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

Instance Attribute Details

#display_nameString

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

Returns:

  • (String)


805
806
807
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 805

def display_name
  @display_name
end

#matched_port_rangeString

Port range defined in the forwarding rule that matches the test. Corresponds to the JSON property matchedPortRange

Returns:

  • (String)


810
811
812
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 810

def matched_port_range
  @matched_port_range
end

#matched_protocolString

Protocol defined in the forwarding rule that matches the test. Corresponds to the JSON property matchedProtocol

Returns:

  • (String)


815
816
817
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 815

def matched_protocol
  @matched_protocol
end

#network_uriString

Network URI. Only valid for Internal Load Balancer. Corresponds to the JSON property networkUri

Returns:

  • (String)


820
821
822
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 820

def network_uri
  @network_uri
end

#targetString

Target type of the forwarding rule. Corresponds to the JSON property target

Returns:

  • (String)


825
826
827
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 825

def target
  @target
end

#uriString

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

Returns:

  • (String)


830
831
832
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 830

def uri
  @uri
end

#vipString

VIP of the forwarding rule. Corresponds to the JSON property vip

Returns:

  • (String)


835
836
837
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 835

def vip
  @vip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



842
843
844
845
846
847
848
849
850
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 842

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @matched_port_range = args[:matched_port_range] if args.key?(:matched_port_range)
  @matched_protocol = args[:matched_protocol] if args.key?(:matched_protocol)
  @network_uri = args[:network_uri] if args.key?(:network_uri)
  @target = args[:target] if args.key?(:target)
  @uri = args[:uri] if args.key?(:uri)
  @vip = args[:vip] if args.key?(:vip)
end