Class: Google::Apis::NetworkmanagementV1::ForwardingRuleInfo

Inherits:
Object
  • Object
show all
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 forwarding rule.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ForwardingRuleInfo

Returns a new instance of ForwardingRuleInfo.



1032
1033
1034
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1032

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)


1000
1001
1002
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1000

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)


1005
1006
1007
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1005

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)


1010
1011
1012
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1010

def matched_protocol
  @matched_protocol
end

#network_uriString

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

Returns:

  • (String)


1015
1016
1017
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1015

def network_uri
  @network_uri
end

#targetString

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

Returns:

  • (String)


1020
1021
1022
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1020

def target
  @target
end

#uriString

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

Returns:

  • (String)


1025
1026
1027
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1025

def uri
  @uri
end

#vipString

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

Returns:

  • (String)


1030
1031
1032
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1030

def vip
  @vip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1037
1038
1039
1040
1041
1042
1043
1044
1045
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1037

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