Class: Google::Compute::Data::InstTempAliaIpRangCatalog

Inherits:
InstTempAliaIpRang show all
Defined in:
lib/google/compute/property/instancetemplate_alias_ip_ranges.rb

Overview

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

Instance Attribute Summary

Attributes inherited from InstTempAliaIpRang

#ip_cidr_range, #subnetwork_range_name

Instance Method Summary collapse

Methods inherited from InstTempAliaIpRang

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

Constructor Details

#initialize(args) ⇒ InstTempAliaIpRangCatalog

Returns a new instance of InstTempAliaIpRangCatalog.



99
100
101
102
103
104
105
106
107
# File 'lib/google/compute/property/instancetemplate_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