Sha256: b9b8920ca8f14aafe56734e397f45a892414bf7acb6dcc2a22961287bf9ef071
Contents?: true
Size: 449 Bytes
Versions: 124
Compression:
Stored size: 449 Bytes
Contents
# frozen_string_literal: true module Files class PublicIpAddress attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # string - The public IP address. def ip_address @attributes[:ip_address] end # string - The name of the frontend server. def server_name @attributes[:server_name] end end end
Version data entries
124 entries across 124 versions & 1 rubygems