Module: SoftLayer

Defined in:
lib/softlayer/base.rb,
lib/softlayer/Client.rb,
lib/softlayer/Config.rb,
lib/softlayer/Server.rb,
lib/softlayer/Ticket.rb,
lib/softlayer/Account.rb,
lib/softlayer/ModelBase.rb,
lib/softlayer/ObjectFilter.rb,
lib/softlayer/VirtualServer.rb,
lib/softlayer/ProductPackage.rb,
lib/softlayer/BareMetalServer.rb,
lib/softlayer/ObjectMaskToken.rb,
lib/softlayer/DynamicAttribute.rb,
lib/softlayer/ObjectMaskParser.rb,
lib/softlayer/APIParameterFilter.rb,
lib/softlayer/ObjectMaskProperty.rb,
lib/softlayer/VirtualServerOrder.rb,
lib/softlayer/ObjectMaskTokenizer.rb,
lib/softlayer/ProductItemCategory.rb,
lib/softlayer/BareMetalServerOrder.rb,
lib/softlayer/BareMetalServerOrder_Package.rb,
lib/softlayer/Service.rb

Overview

Copyright © 2014 SoftLayer Technologies, Inc. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Defined Under Namespace

Modules: DynamicAttribute Classes: APIParameterFilter, Account, BareMetalServer, BareMetalServerOrder, BareMetalServerOrder_Package, Client, Config, ModelBase, ObjectFilter, ObjectFilterBlockHandler, ObjectFilterOperation, ObjectMaskParser, ObjectMaskParserError, ObjectMaskProperty, ObjectMaskToken, ObjectMaskTokenizer, ProductConfigurationOption, ProductItemCategory, ProductPackage, Server, Service, Ticket, VirtualServer, VirtualServerOrder

Constant Summary collapse

VERSION =

version history in the CHANGELOG.textile file at the root of the source

"2.2.2"
API_PUBLIC_ENDPOINT =

The base URL of the SoftLayer API available to the public internet.

'https://api.softlayer.com/xmlrpc/v3/'
API_PRIVATE_ENDPOINT =

The base URL of the SoftLayer API available through SoftLayer’s private network

'https://api.service.softlayer.com/xmlrpc/v3/'
OBJECT_FILTER_OPERATORS =
[
  '*=',   # Contains (ignoring case)
  '^=',   # Begins with (ignoring case)
  '$=',   # Ends with (ignoring_case)
  '_=',   # Matches (ignoring case)
  '!=',   # Is not Equal To (case sensitive)
  '<=',   # Less than or Equal To (case sensitive)
  '>=',   # Greater than or Equal To (case sensitive)
  '<',    # Less Than (case sensitive)
  '>',    # Greater Than (case sensitive)
  '~',    # Contains (case sensitive)
  '!~'    # Does not Contain (case sensitive)
]