You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# * <b>+:username+</b> - The username of the account you wish to access through the API
65
65
# * <b>+:api_key+</b> - The API key used to authenticate the user with the API
66
-
# * <b>+:enpoint_url+</b> - The API endpoint the client should connect to. This defaults to API_PUBLIC_ENDPOINT
66
+
# * <b>+:endpoint_url+</b> - The API endpoint the client should connect to. This defaults to API_PUBLIC_ENDPOINT
67
67
# * <b>+:user_agent+</b> - A string that is passed along as the user agent when the client sends requests to the server
68
68
# * <b>+:timeout+</b> - An integer number of seconds to wait until network requests time out. Corresponds to the network_timeout property of the client
69
69
#
@@ -92,7 +92,7 @@ def initialize(options = {})
92
92
93
93
raise"A SoftLayer Client requires a username"if !@username || @username.empty?
94
94
raise"A SoftLayer Client requires an api_key"if !@api_key || @api_key.empty?
95
-
raise"A SoftLayer Clietn requires an enpoint URL"if !@endpoint_url || @endpoint_url.empty?
95
+
raise"A SoftLayer Client requires an endpoint URL"if !@endpoint_url || @endpoint_url.empty?
96
96
end
97
97
98
98
# return a hash of the authentication headers for the client
0 commit comments