class Google::Apis::ApigeeV1::GoogleCloudApigeeV1NatAddress

Apigee NAT(network address translation) address. A NAT address is a static external IP address used for Internet egress traffic.

Attributes

ip_address[RW]

Output only. The static IPV4 address. Corresponds to the JSON property `ipAddress` @return [String]

name[RW]

Required. Resource ID of the NAT address. Corresponds to the JSON property `name` @return [String]

state[RW]

Output only. State of the nat address. Corresponds to the JSON property `state` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 4685
def update!(**args)
  @ip_address = args[:ip_address] if args.key?(:ip_address)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
end