class Bmc::Sdk::OsConfiguration
OsConfiguration
is used for OS specific configuration properties
@see developers.phoenixnap.com/docs/bmc/1/types/OsConfiguration
Attributes
rdpAllowedIps[RW]
windows[RW]
Public Class Methods
new(windows, rdpAllowedIps)
click to toggle source
# File lib/dtos.rb, line 118 def initialize(windows, rdpAllowedIps) @windows = windows @rdpAllowedIps = rdpAllowedIps end
Public Instance Methods
to_json(*a)
click to toggle source
# File lib/dtos.rb, line 122 def to_json(*a) {windows: @windows, rdpAllowedIps: @rdpAllowedIps} end