class Google::Apis::ComputeBeta::VpnTunnel

Attributes

creation_timestamp[RW]
Output Only

Creation timestamp in RFC3339 text format.

Corresponds to the JSON property `creationTimestamp` @return [String]

description[RW]

An optional description of this resource. Provide this property when you create the resource. Corresponds to the JSON property `description` @return [String]

detailed_status[RW]
Output Only

Detailed status message for the VPN tunnel.

Corresponds to the JSON property `detailedStatus` @return [String]

id[RW]
Output Only

The unique identifier for the resource. This identifier is

defined by the server. Corresponds to the JSON property `id` @return [String]

ike_version[RW]

IKE protocol version to use when establishing the VPN tunnel with peer VPN gateway. Acceptable IKE versions are 1 or 2. Default version is 2. Corresponds to the JSON property `ikeVersion` @return [Fixnum]

kind[RW]
Output Only

Type of resource. Always compute#vpnTunnel for VPN tunnels.

Corresponds to the JSON property `kind` @return [String]

local_traffic_selector[RW]

Local traffic selector to use when establishing the VPN tunnel with peer VPN gateway. The value should be a CIDR formatted string, for example: 192.168.0.0/

  1. The ranges should be disjoint.

Corresponds to the JSON property `localTrafficSelector` @return [Array<String>]

name[RW]

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a- z0-9]*)? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. Corresponds to the JSON property `name` @return [String]

peer_ip[RW]

IP address of the peer VPN gateway. Corresponds to the JSON property `peerIp` @return [String]

region[RW]
Output Only

URL of the region where the VPN tunnel resides.

Corresponds to the JSON property `region` @return [String]

router[RW]

URL of router resource to be used for dynamic routing. Corresponds to the JSON property `router` @return [String]

shared_secret[RW]

Shared secret used to set the secure session between the Cloud VPN gateway and the peer VPN gateway. Corresponds to the JSON property `sharedSecret` @return [String]

shared_secret_hash[RW]

Hash of the shared secret. Corresponds to the JSON property `sharedSecretHash` @return [String]

status[RW]
Output Only

The status of the VPN tunnel.

Corresponds to the JSON property `status` @return [String]

target_vpn_gateway[RW]

URL of the VPN gateway with which this VPN tunnel is associated. Provided by the client when the VPN tunnel is created. Corresponds to the JSON property `targetVpnGateway` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/compute_beta/classes.rb, line 9642
def update!(**args)
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
  @description = args[:description] if args.key?(:description)
  @detailed_status = args[:detailed_status] if args.key?(:detailed_status)
  @id = args[:id] if args.key?(:id)
  @ike_version = args[:ike_version] if args.key?(:ike_version)
  @kind = args[:kind] if args.key?(:kind)
  @local_traffic_selector = args[:local_traffic_selector] if args.key?(:local_traffic_selector)
  @name = args[:name] if args.key?(:name)
  @peer_ip = args[:peer_ip] if args.key?(:peer_ip)
  @region = args[:region] if args.key?(:region)
  @router = args[:router] if args.key?(:router)
  @self_link = args[:self_link] if args.key?(:self_link)
  @shared_secret = args[:shared_secret] if args.key?(:shared_secret)
  @shared_secret_hash = args[:shared_secret_hash] if args.key?(:shared_secret_hash)
  @status = args[:status] if args.key?(:status)
  @target_vpn_gateway = args[:target_vpn_gateway] if args.key?(:target_vpn_gateway)
end