Class: Google::Compute::Data::InstaAliasIpRangeCatalog

Inherits:
InstaAliasIpRange show all
Defined in:
lib/google/compute/property/instance_alias_ip_ranges.rb

Overview

Manages a InstaAliasIpRange nested object Data is coming from the Puppet manifest

Instance Attribute Summary

Attributes inherited from InstaAliasIpRange

#ip_cidr_range, #subnetwork_range_name

Instance Method Summary collapse

Methods inherited from InstaAliasIpRange

#<=>, #==, #to_json, #to_s

Constructor Details

#initialize(args) ⇒ InstaAliasIpRangeCatalog

Returns a new instance of InstaAliasIpRangeCatalog.



99
100
101
102
103
104
105
106
107
# File 'lib/google/compute/property/instance_alias_ip_ranges.rb', line 99

def initialize(args)
  @ip_cidr_range = Google::Compute::Property::String.unsafe_munge(
    args['ip_cidr_range']
  )
  @subnetwork_range_name =
    Google::Compute::Property::String.unsafe_munge(
      args['subnetwork_range_name']
    )
end