Sha256: 07b8d4177c1e0eb0f6b967b253f3d870c2fe3a785671edf2e4c8c3c2f18165a5
Contents?: true
Size: 599 Bytes
Versions: 93
Compression:
Stored size: 599 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 # string def ftp_enabled @attributes[:ftp_enabled] end # string def sftp_enabled @attributes[:sftp_enabled] end end end
Version data entries
93 entries across 93 versions & 1 rubygems