Class: Google::Apis::ComputeAlpha::InternalIpOwner

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InternalIpOwner

Returns a new instance of InternalIpOwner.



18887
18888
18889
# File 'generated/google/apis/compute_alpha/classes.rb', line 18887

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

Instance Attribute Details

#ip_cidr_rangeString

IP CIDR range being owned. Corresponds to the JSON property ipCidrRange

Returns:

  • (String)


18874
18875
18876
# File 'generated/google/apis/compute_alpha/classes.rb', line 18874

def ip_cidr_range
  @ip_cidr_range
end

#ownersArray<String>

URLs of the IP owners of the IP CIDR range. Corresponds to the JSON property owners

Returns:

  • (Array<String>)


18879
18880
18881
# File 'generated/google/apis/compute_alpha/classes.rb', line 18879

def owners
  @owners
end

#system_ownedBoolean Also known as: system_owned?

Whether this IP CIDR range is reserved for system use. Corresponds to the JSON property systemOwned

Returns:

  • (Boolean)


18884
18885
18886
# File 'generated/google/apis/compute_alpha/classes.rb', line 18884

def system_owned
  @system_owned
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18892
18893
18894
18895
18896
# File 'generated/google/apis/compute_alpha/classes.rb', line 18892

def update!(**args)
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
  @owners = args[:owners] if args.key?(:owners)
  @system_owned = args[:system_owned] if args.key?(:system_owned)
end