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