wasabi 3.5.0 → 3.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +14 -0
- data/README.md +4 -4
- data/lib/wasabi.rb +2 -0
- data/lib/wasabi/core_ext/string.rb +7 -8
- data/lib/wasabi/document.rb +2 -0
- data/lib/wasabi/parser.rb +25 -16
- data/lib/wasabi/resolver.rb +2 -0
- data/lib/wasabi/version.rb +3 -1
- data/spec/fixtures/brand.wsdl +624 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/support/adapter.rb +2 -0
- data/spec/support/fixture.rb +2 -0
- data/spec/support/profiling.rb +2 -0
- data/spec/wasabi/core_ext/string_spec.rb +13 -11
- data/spec/wasabi/document/authentication_spec.rb +2 -0
- data/spec/wasabi/document/economic_spec.rb +2 -0
- data/spec/wasabi/document/encoded_endpoint_spec.rb +3 -1
- data/spec/wasabi/document/geotrust_spec.rb +7 -5
- data/spec/wasabi/document/inherited_spec.rb +2 -0
- data/spec/wasabi/document/multiple_namespaces_spec.rb +17 -15
- data/spec/wasabi/document/namespaced_actions_spec.rb +2 -0
- data/spec/wasabi/document/no_namespace_spec.rb +5 -3
- data/spec/wasabi/document/savon295_spec.rb +3 -1
- data/spec/wasabi/document/soap12_spec.rb +2 -0
- data/spec/wasabi/document/two_bindings_spec.rb +2 -0
- data/spec/wasabi/document_spec.rb +2 -0
- data/spec/wasabi/parser/get_servicename_spec.rb +2 -0
- data/spec/wasabi/parser/import_port_types_spec.rb +2 -0
- data/spec/wasabi/parser/juniper_spec.rb +2 -0
- data/spec/wasabi/parser/marketo_spec.rb +2 -0
- data/spec/wasabi/parser/multiple_namespaces_spec.rb +2 -0
- data/spec/wasabi/parser/multiple_parts_in_message_spec.rb +2 -0
- data/spec/wasabi/parser/no_message_parts_spec.rb +2 -0
- data/spec/wasabi/parser/no_namespace_spec.rb +2 -0
- data/spec/wasabi/parser/no_target_namespace_spec.rb +2 -0
- data/spec/wasabi/parser/softlayer_spec.rb +20 -0
- data/spec/wasabi/parser/symbolic_endpoint_spec.rb +7 -8
- data/spec/wasabi/parser/tradetracker_spec.rb +3 -1
- data/spec/wasabi/resolver_spec.rb +3 -1
- data/spec/wasabi/wasabi_spec.rb +2 -0
- metadata +66 -55
- data/.gitignore +0 -8
- data/.rspec +0 -1
- data/.travis.yml +0 -7
- data/Gemfile +0 -13
- data/Rakefile +0 -7
- data/wasabi.gemspec +0 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1932f19903294984126f6d42b667393854609d2885c5e8741dae0d51ed15598c
|
4
|
+
data.tar.gz: 39ac1d63527d37c648e23024eb3f7ddad17fce968cc453d988c03d2a920d7563
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e53b08eb16fdc0a152eee4a8b423159708ec239193c25bdb978835ae8926125cf524d750f58ae9ce93ac187fe17dcb0ad8d89114a7e2e2bac043924186ad071
|
7
|
+
data.tar.gz: f04aa80c72cfc71d2f800d97fe27265a54a79ce3bb9c340a762a653fc48f6d7bd545134843b8c620a5cc81826a85087f0034be8d564b7e9a058b7cd1f8ae0168
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
# 3.6.0 (2020-08-27)
|
2
|
+
|
3
|
+
- Add: Support RPC-encoded WSDL (#63, @fernandes)
|
4
|
+
- Fix: Depend on [addressable](https://github.com/sporkmonger/addressable), for unescape to avoid a Ruby warning (#81, @chaymaeBZ, @bvicenzo)
|
5
|
+
- Change: Turn `String` monkeypatches into `Wasabi` class methods (@tjarratt) (released this version)
|
6
|
+
- Change: Reduced size of gem by focusing the files list (#89, @utkarsh2102)
|
7
|
+
- Remove: No longer tested on Rubinius
|
8
|
+
|
9
|
+
# 3.5.1 (2015-05-18)
|
10
|
+
|
11
|
+
NB: This version was never released to RubyGems.org.
|
12
|
+
|
13
|
+
* Fix: [#59](https://github.com/savonrb/wasabi/issue/59) Stop monkey patching the String class to provide #snakecase
|
14
|
+
|
1
15
|
# 3.5.0 (2015-03-31)
|
2
16
|
|
3
17
|
* Formally drop support for ruby 1.8.7
|
data/README.md
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
A simple WSDL parser.
|
4
4
|
|
5
|
-
[![Build Status](https://secure.travis-ci.org/savonrb/wasabi.
|
6
|
-
[![Gem Version](https://badge.fury.io/rb/wasabi.
|
7
|
-
[![Code Climate](https://codeclimate.com/github/savonrb/wasabi.
|
8
|
-
[![Coverage Status](https://coveralls.io/repos/savonrb/wasabi/badge.
|
5
|
+
[![Build Status](https://secure.travis-ci.org/savonrb/wasabi.svg?branch=master)](http://travis-ci.org/savonrb/wasabi)
|
6
|
+
[![Gem Version](https://badge.fury.io/rb/wasabi.svg)](http://badge.fury.io/rb/wasabi)
|
7
|
+
[![Code Climate](https://codeclimate.com/github/savonrb/wasabi.svg)](https://codeclimate.com/github/savonrb/wasabi)
|
8
|
+
[![Coverage Status](https://coveralls.io/repos/savonrb/wasabi/badge.svg?branch=master)](https://coveralls.io/r/savonrb/wasabi)
|
9
9
|
|
10
10
|
|
11
11
|
## Installation
|
data/lib/wasabi.rb
CHANGED
@@ -1,21 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Wasabi
|
2
4
|
module CoreExt
|
3
5
|
module String
|
4
6
|
|
5
|
-
|
6
|
-
|
7
|
-
str = dup
|
7
|
+
def self.snakecase(str)
|
8
|
+
str = str.dup
|
8
9
|
str.gsub!(/::/, '/')
|
9
10
|
str.gsub!(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
|
10
11
|
str.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
|
11
|
-
str.tr!
|
12
|
-
str.tr!
|
12
|
+
str.tr!(".", "_")
|
13
|
+
str.tr!("-", "_")
|
13
14
|
str.downcase!
|
14
15
|
str
|
15
|
-
end
|
16
|
+
end
|
16
17
|
|
17
18
|
end
|
18
19
|
end
|
19
20
|
end
|
20
|
-
|
21
|
-
String.send :include, Wasabi::CoreExt::String
|
data/lib/wasabi/document.rb
CHANGED
data/lib/wasabi/parser.rb
CHANGED
@@ -1,4 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'uri'
|
4
|
+
require 'addressable/uri'
|
2
5
|
require 'wasabi/core_ext/string'
|
3
6
|
|
4
7
|
module Wasabi
|
@@ -86,9 +89,8 @@ module Wasabi
|
|
86
89
|
end
|
87
90
|
|
88
91
|
def parse_url(url)
|
89
|
-
unescaped_url = URI.unescape(url.to_s)
|
90
|
-
|
91
|
-
URI.parse(escaped_url)
|
92
|
+
unescaped_url = Addressable::URI.unescape(url.to_s)
|
93
|
+
URI(unescaped_url)
|
92
94
|
rescue URI::InvalidURIError
|
93
95
|
end
|
94
96
|
|
@@ -117,8 +119,8 @@ module Wasabi
|
|
117
119
|
end
|
118
120
|
|
119
121
|
def parse_operations_parameters
|
120
|
-
|
121
|
-
name = element.attribute('name').to_s.
|
122
|
+
document.xpath("wsdl:definitions/wsdl:types/*[local-name()='schema']/*[local-name()='element']", 'wsdl' => WSDL).each do |element|
|
123
|
+
name = Wasabi::CoreExt::String.snakecase(element.attribute('name').to_s).to_sym
|
122
124
|
|
123
125
|
if operation = @operations[name]
|
124
126
|
element.xpath("*[local-name() ='complexType']/*[local-name() ='sequence']/*[local-name() ='element']").each do |child_element|
|
@@ -136,6 +138,7 @@ module Wasabi
|
|
136
138
|
operations = document.xpath('wsdl:definitions/wsdl:binding/wsdl:operation', 'wsdl' => WSDL)
|
137
139
|
operations.each do |operation|
|
138
140
|
name = operation.attribute('name').to_s
|
141
|
+
snakecase_name = Wasabi::CoreExt::String.snakecase(name).to_sym
|
139
142
|
|
140
143
|
# TODO: check for soap namespace?
|
141
144
|
soap_operation = operation.element_children.find { |node| node.name == 'operation' }
|
@@ -150,9 +153,9 @@ module Wasabi
|
|
150
153
|
namespace_id, input = input_for(operation)
|
151
154
|
|
152
155
|
# Store namespace identifier so this operation can be mapped to the proper namespace.
|
153
|
-
@operations[
|
154
|
-
elsif !@operations[
|
155
|
-
@operations[
|
156
|
+
@operations[snakecase_name] = { :action => action, :input => input, :output => output, :namespace_identifier => namespace_id}
|
157
|
+
elsif !@operations[snakecase_name]
|
158
|
+
@operations[snakecase_name] = { :action => name, :input => name }
|
156
159
|
end
|
157
160
|
end
|
158
161
|
end
|
@@ -279,6 +282,19 @@ module Wasabi
|
|
279
282
|
end
|
280
283
|
end
|
281
284
|
|
285
|
+
# if multi part message, return a hash representing
|
286
|
+
part_messages = message.element_children.select { |node| node.name == "part" && node.attribute('type') }.size
|
287
|
+
if part_messages > 0
|
288
|
+
part_messages_hash = {}
|
289
|
+
part_messages_hash[operation_name] = {}
|
290
|
+
message.element_children.select { |node| node.name == "part" }.each do |node|
|
291
|
+
part_message_name = node.attribute('name').value
|
292
|
+
part_message_type = node.attribute('type').value.split(':')
|
293
|
+
part_messages_hash[operation_name][part_message_name] = part_message_type
|
294
|
+
end
|
295
|
+
return [port_message_ns_id, part_messages_hash]
|
296
|
+
end
|
297
|
+
|
282
298
|
# Fall back to the name of the binding operation
|
283
299
|
if message_type
|
284
300
|
[message_ns_id, message_type]
|
@@ -305,14 +321,7 @@ module Wasabi
|
|
305
321
|
end
|
306
322
|
|
307
323
|
def sections
|
308
|
-
|
309
|
-
|
310
|
-
sections = {}
|
311
|
-
document.root.element_children.each do |node|
|
312
|
-
(sections[node.name] ||= []) << node
|
313
|
-
end
|
314
|
-
|
315
|
-
@sections = sections
|
324
|
+
@sections ||= document.root.element_children.group_by { |node| node.name }
|
316
325
|
end
|
317
326
|
end
|
318
327
|
end
|
data/lib/wasabi/resolver.rb
CHANGED
data/lib/wasabi/version.rb
CHANGED
@@ -0,0 +1,624 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://api.service.softlayer.com/soap/v3/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="slApi" targetNamespace="http://api.service.softlayer.com/soap/v3/">
|
3
|
+
<types>
|
4
|
+
<xsd:schema targetNamespace="http://api.service.softlayer.com/soap/v3/">
|
5
|
+
<xsd:include namespace="http://api.service.softlayer.com/soap/v3/" schemaLocation="https://api.softlayer.com/soap/v3/SoftLayer_Brand?xsd"/>
|
6
|
+
</xsd:schema>
|
7
|
+
<xsd:schema targetNamespace="http://api.service.softlayer.com/soap/v3/">
|
8
|
+
<xsd:complexType name="SoftLayer_BrandInitParameters">
|
9
|
+
<xsd:sequence>
|
10
|
+
<xsd:element minOccurs="1" maxOccurs="1" name="id" type="xsd:int"/>
|
11
|
+
<xsd:element minOccurs="0" maxOccurs="1" name="globalIdentifier" type="xsd:string"/>
|
12
|
+
</xsd:sequence>
|
13
|
+
</xsd:complexType>
|
14
|
+
<xsd:complexType name="SoftLayer_BrandObjectMask">
|
15
|
+
<xsd:sequence>
|
16
|
+
<xsd:element minOccurs="1" maxOccurs="1" name="mask" type="tns:SoftLayer_Brand"/>
|
17
|
+
</xsd:sequence>
|
18
|
+
</xsd:complexType>
|
19
|
+
</xsd:schema>
|
20
|
+
</types>
|
21
|
+
<message name="SoftLayer_BrandInitParametersHeader">
|
22
|
+
<part name="SoftLayer_BrandInitParameters" type="tns:SoftLayer_BrandInitParameters"/>
|
23
|
+
</message>
|
24
|
+
<message name="createCustomerAccount">
|
25
|
+
<part name="account" type="tns:SoftLayer_Account"/>
|
26
|
+
<part name="bypassDuplicateAccountCheck" type="xsd:boolean"/>
|
27
|
+
</message>
|
28
|
+
<message name="createCustomerAccountResponse">
|
29
|
+
<part name="createCustomerAccountReturn" type="tns:SoftLayer_Account"/>
|
30
|
+
</message>
|
31
|
+
<message name="createObject">
|
32
|
+
<part name="templateObject" type="tns:SoftLayer_Brand"/>
|
33
|
+
</message>
|
34
|
+
<message name="createObjectResponse">
|
35
|
+
<part name="createObjectReturn" type="tns:SoftLayer_Brand"/>
|
36
|
+
</message>
|
37
|
+
<message name="getAccount"/>
|
38
|
+
<message name="getAccountResponse">
|
39
|
+
<part name="getAccountReturn" type="tns:SoftLayer_Account"/>
|
40
|
+
</message>
|
41
|
+
<message name="getAllOwnedAccounts"/>
|
42
|
+
<message name="getAllOwnedAccountsResponse">
|
43
|
+
<part name="getAllOwnedAccountsReturn" type="tns:SoftLayer_AccountArray"/>
|
44
|
+
</message>
|
45
|
+
<message name="getAllTicketSubjects">
|
46
|
+
<part name="account" type="tns:SoftLayer_Account"/>
|
47
|
+
</message>
|
48
|
+
<message name="getAllTicketSubjectsResponse">
|
49
|
+
<part name="getAllTicketSubjectsReturn" type="tns:SoftLayer_Ticket_SubjectArray"/>
|
50
|
+
</message>
|
51
|
+
<message name="getAllowAccountCreationFlag"/>
|
52
|
+
<message name="getAllowAccountCreationFlagResponse">
|
53
|
+
<part name="getAllowAccountCreationFlagReturn" type="xsd:boolean"/>
|
54
|
+
</message>
|
55
|
+
<message name="getCatalog"/>
|
56
|
+
<message name="getCatalogResponse">
|
57
|
+
<part name="getCatalogReturn" type="tns:SoftLayer_Product_Catalog"/>
|
58
|
+
</message>
|
59
|
+
<message name="getContactInformation"/>
|
60
|
+
<message name="getContactInformationResponse">
|
61
|
+
<part name="getContactInformationReturn" type="tns:SoftLayer_Brand_ContactArray"/>
|
62
|
+
</message>
|
63
|
+
<message name="getContacts"/>
|
64
|
+
<message name="getContactsResponse">
|
65
|
+
<part name="getContactsReturn" type="tns:SoftLayer_Brand_ContactArray"/>
|
66
|
+
</message>
|
67
|
+
<message name="getCustomerCountryLocationRestrictions"/>
|
68
|
+
<message name="getCustomerCountryLocationRestrictionsResponse">
|
69
|
+
<part name="getCustomerCountryLocationRestrictionsReturn" type="tns:SoftLayer_Brand_Restriction_Location_CustomerCountryArray"/>
|
70
|
+
</message>
|
71
|
+
<message name="getDistributor"/>
|
72
|
+
<message name="getDistributorResponse">
|
73
|
+
<part name="getDistributorReturn" type="tns:SoftLayer_Brand"/>
|
74
|
+
</message>
|
75
|
+
<message name="getDistributorChildFlag"/>
|
76
|
+
<message name="getDistributorChildFlagResponse">
|
77
|
+
<part name="getDistributorChildFlagReturn" type="xsd:boolean"/>
|
78
|
+
</message>
|
79
|
+
<message name="getDistributorFlag"/>
|
80
|
+
<message name="getDistributorFlagResponse">
|
81
|
+
<part name="getDistributorFlagReturn" type="xsd:string"/>
|
82
|
+
</message>
|
83
|
+
<message name="getHardware"/>
|
84
|
+
<message name="getHardwareResponse">
|
85
|
+
<part name="getHardwareReturn" type="tns:SoftLayer_HardwareArray"/>
|
86
|
+
</message>
|
87
|
+
<message name="getHasAgentSupportFlag"/>
|
88
|
+
<message name="getHasAgentSupportFlagResponse">
|
89
|
+
<part name="getHasAgentSupportFlagReturn" type="xsd:boolean"/>
|
90
|
+
</message>
|
91
|
+
<message name="getMerchantName"/>
|
92
|
+
<message name="getMerchantNameResponse">
|
93
|
+
<part name="getMerchantNameReturn" type="xsd:string"/>
|
94
|
+
</message>
|
95
|
+
<message name="getObject"/>
|
96
|
+
<message name="getObjectResponse">
|
97
|
+
<part name="getObjectReturn" type="tns:SoftLayer_Brand"/>
|
98
|
+
</message>
|
99
|
+
<message name="getOpenTickets"/>
|
100
|
+
<message name="getOpenTicketsResponse">
|
101
|
+
<part name="getOpenTicketsReturn" type="tns:SoftLayer_TicketArray"/>
|
102
|
+
</message>
|
103
|
+
<message name="getOwnedAccounts"/>
|
104
|
+
<message name="getOwnedAccountsResponse">
|
105
|
+
<part name="getOwnedAccountsReturn" type="tns:SoftLayer_AccountArray"/>
|
106
|
+
</message>
|
107
|
+
<message name="getTicketGroups"/>
|
108
|
+
<message name="getTicketGroupsResponse">
|
109
|
+
<part name="getTicketGroupsReturn" type="tns:SoftLayer_Ticket_GroupArray"/>
|
110
|
+
</message>
|
111
|
+
<message name="getTickets"/>
|
112
|
+
<message name="getTicketsResponse">
|
113
|
+
<part name="getTicketsReturn" type="tns:SoftLayer_TicketArray"/>
|
114
|
+
</message>
|
115
|
+
<message name="getToken">
|
116
|
+
<part name="userId" type="xsd:int"/>
|
117
|
+
</message>
|
118
|
+
<message name="getTokenResponse">
|
119
|
+
<part name="getTokenReturn" type="xsd:string"/>
|
120
|
+
</message>
|
121
|
+
<message name="getUsers"/>
|
122
|
+
<message name="getUsersResponse">
|
123
|
+
<part name="getUsersReturn" type="tns:SoftLayer_User_CustomerArray"/>
|
124
|
+
</message>
|
125
|
+
<message name="getVirtualGuests"/>
|
126
|
+
<message name="getVirtualGuestsResponse">
|
127
|
+
<part name="getVirtualGuestsReturn" type="tns:SoftLayer_Virtual_GuestArray"/>
|
128
|
+
</message>
|
129
|
+
<message name="authenticateHeader">
|
130
|
+
<part name="authenticate" type="tns:authenticate"/>
|
131
|
+
</message>
|
132
|
+
<message name="resultLimitHeader">
|
133
|
+
<part name="resultLimit" type="tns:resultLimit"/>
|
134
|
+
</message>
|
135
|
+
<message name="totalItemsHeader">
|
136
|
+
<part name="totalItems" type="tns:totalItems"/>
|
137
|
+
</message>
|
138
|
+
<message name="SoftLayer_BrandObjectMaskHeader">
|
139
|
+
<part name="SoftLayer_BrandObjectMask" type="tns:SoftLayer_BrandObjectMask"/>
|
140
|
+
</message>
|
141
|
+
<message name="SoftLayer_BrandObjectFilterHeader">
|
142
|
+
<part name="SoftLayer_BrandObjectFilter" type="tns:SoftLayer_BrandObjectFilter"/>
|
143
|
+
</message>
|
144
|
+
<message name="SoftLayer_ObjectMaskHeader">
|
145
|
+
<part name="SoftLayer_ObjectMask" type="tns:SoftLayer_ObjectMask"/>
|
146
|
+
</message>
|
147
|
+
<portType name="SoftLayer_BrandPortType">
|
148
|
+
<documentation>Every SoftLayer customer account is associated to a brand
|
149
|
+
|
150
|
+
SoftLayer customers are unable to change their brand information in the portal or the API. </documentation>
|
151
|
+
<operation name="createCustomerAccount">
|
152
|
+
<documentation>Create a new customer account record. </documentation>
|
153
|
+
<input message="tns:createCustomerAccount"/>
|
154
|
+
<output message="tns:createCustomerAccountResponse"/>
|
155
|
+
</operation>
|
156
|
+
<operation name="createObject">
|
157
|
+
<documentation>Create a new brand record. </documentation>
|
158
|
+
<input message="tns:createObject"/>
|
159
|
+
<output message="tns:createObjectResponse"/>
|
160
|
+
</operation>
|
161
|
+
<operation name="getAccount">
|
162
|
+
<documentation></documentation>
|
163
|
+
<input message="tns:getAccount"/>
|
164
|
+
<output message="tns:getAccountResponse"/>
|
165
|
+
</operation>
|
166
|
+
<operation name="getAllOwnedAccounts">
|
167
|
+
<documentation>Retrieve all accounts owned by the brand.</documentation>
|
168
|
+
<input message="tns:getAllOwnedAccounts"/>
|
169
|
+
<output message="tns:getAllOwnedAccountsResponse"/>
|
170
|
+
</operation>
|
171
|
+
<operation name="getAllTicketSubjects">
|
172
|
+
<documentation></documentation>
|
173
|
+
<input message="tns:getAllTicketSubjects"/>
|
174
|
+
<output message="tns:getAllTicketSubjectsResponse"/>
|
175
|
+
</operation>
|
176
|
+
<operation name="getAllowAccountCreationFlag">
|
177
|
+
<documentation>Retrieve this flag indicates if creation of accounts is allowed.</documentation>
|
178
|
+
<input message="tns:getAllowAccountCreationFlag"/>
|
179
|
+
<output message="tns:getAllowAccountCreationFlagResponse"/>
|
180
|
+
</operation>
|
181
|
+
<operation name="getCatalog">
|
182
|
+
<documentation>Retrieve the Product Catalog for the Brand</documentation>
|
183
|
+
<input message="tns:getCatalog"/>
|
184
|
+
<output message="tns:getCatalogResponse"/>
|
185
|
+
</operation>
|
186
|
+
<operation name="getContactInformation">
|
187
|
+
<documentation>Retrieve the contact information for the brand such as the corporate or support contact. This will include the contact name, telephone number, fax number, email address, and mailing address of the contact. </documentation>
|
188
|
+
<input message="tns:getContactInformation"/>
|
189
|
+
<output message="tns:getContactInformationResponse"/>
|
190
|
+
</operation>
|
191
|
+
<operation name="getContacts">
|
192
|
+
<documentation>Retrieve the contacts for the brand.</documentation>
|
193
|
+
<input message="tns:getContacts"/>
|
194
|
+
<output message="tns:getContactsResponse"/>
|
195
|
+
</operation>
|
196
|
+
<operation name="getCustomerCountryLocationRestrictions">
|
197
|
+
<documentation>Retrieve this references relationship between brands, locations and countries associated with a user's account that are ineligible when ordering products. For example, the India datacenter may not be available on this brand for customers that live in Great Britain.</documentation>
|
198
|
+
<input message="tns:getCustomerCountryLocationRestrictions"/>
|
199
|
+
<output message="tns:getCustomerCountryLocationRestrictionsResponse"/>
|
200
|
+
</operation>
|
201
|
+
<operation name="getDistributor">
|
202
|
+
<documentation></documentation>
|
203
|
+
<input message="tns:getDistributor"/>
|
204
|
+
<output message="tns:getDistributorResponse"/>
|
205
|
+
</operation>
|
206
|
+
<operation name="getDistributorChildFlag">
|
207
|
+
<documentation></documentation>
|
208
|
+
<input message="tns:getDistributorChildFlag"/>
|
209
|
+
<output message="tns:getDistributorChildFlagResponse"/>
|
210
|
+
</operation>
|
211
|
+
<operation name="getDistributorFlag">
|
212
|
+
<documentation></documentation>
|
213
|
+
<input message="tns:getDistributorFlag"/>
|
214
|
+
<output message="tns:getDistributorFlagResponse"/>
|
215
|
+
</operation>
|
216
|
+
<operation name="getHardware">
|
217
|
+
<documentation>Retrieve an account's associated hardware objects.</documentation>
|
218
|
+
<input message="tns:getHardware"/>
|
219
|
+
<output message="tns:getHardwareResponse"/>
|
220
|
+
</operation>
|
221
|
+
<operation name="getHasAgentSupportFlag">
|
222
|
+
<documentation></documentation>
|
223
|
+
<input message="tns:getHasAgentSupportFlag"/>
|
224
|
+
<output message="tns:getHasAgentSupportFlagResponse"/>
|
225
|
+
</operation>
|
226
|
+
<operation name="getMerchantName">
|
227
|
+
<documentation>Get the payment processor merchant name.</documentation>
|
228
|
+
<input message="tns:getMerchantName"/>
|
229
|
+
<output message="tns:getMerchantNameResponse"/>
|
230
|
+
</operation>
|
231
|
+
<operation name="getObject">
|
232
|
+
<documentation></documentation>
|
233
|
+
<input message="tns:getObject"/>
|
234
|
+
<output message="tns:getObjectResponse"/>
|
235
|
+
</operation>
|
236
|
+
<operation name="getOpenTickets">
|
237
|
+
<documentation></documentation>
|
238
|
+
<input message="tns:getOpenTickets"/>
|
239
|
+
<output message="tns:getOpenTicketsResponse"/>
|
240
|
+
</operation>
|
241
|
+
<operation name="getOwnedAccounts">
|
242
|
+
<documentation>Retrieve active accounts owned by the brand.</documentation>
|
243
|
+
<input message="tns:getOwnedAccounts"/>
|
244
|
+
<output message="tns:getOwnedAccountsResponse"/>
|
245
|
+
</operation>
|
246
|
+
<operation name="getTicketGroups">
|
247
|
+
<documentation></documentation>
|
248
|
+
<input message="tns:getTicketGroups"/>
|
249
|
+
<output message="tns:getTicketGroupsResponse"/>
|
250
|
+
</operation>
|
251
|
+
<operation name="getTickets">
|
252
|
+
<documentation></documentation>
|
253
|
+
<input message="tns:getTickets"/>
|
254
|
+
<output message="tns:getTicketsResponse"/>
|
255
|
+
</operation>
|
256
|
+
<operation name="getToken">
|
257
|
+
<documentation></documentation>
|
258
|
+
<input message="tns:getToken"/>
|
259
|
+
<output message="tns:getTokenResponse"/>
|
260
|
+
</operation>
|
261
|
+
<operation name="getUsers">
|
262
|
+
<documentation></documentation>
|
263
|
+
<input message="tns:getUsers"/>
|
264
|
+
<output message="tns:getUsersResponse"/>
|
265
|
+
</operation>
|
266
|
+
<operation name="getVirtualGuests">
|
267
|
+
<documentation>Retrieve an account's associated virtual guest objects.</documentation>
|
268
|
+
<input message="tns:getVirtualGuests"/>
|
269
|
+
<output message="tns:getVirtualGuestsResponse"/>
|
270
|
+
</operation>
|
271
|
+
</portType>
|
272
|
+
<binding name="SoftLayer_BrandBinding" type="tns:SoftLayer_BrandPortType">
|
273
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
274
|
+
<operation name="createCustomerAccount">
|
275
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
276
|
+
<input>
|
277
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
278
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
279
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
280
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
281
|
+
</input>
|
282
|
+
<output>
|
283
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
284
|
+
</output>
|
285
|
+
</operation>
|
286
|
+
<operation name="createObject">
|
287
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
288
|
+
<input>
|
289
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
290
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
291
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
292
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
293
|
+
</input>
|
294
|
+
<output>
|
295
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
296
|
+
</output>
|
297
|
+
</operation>
|
298
|
+
<operation name="getAccount">
|
299
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
300
|
+
<input>
|
301
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
302
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
303
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
304
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
305
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
306
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
307
|
+
</input>
|
308
|
+
<output>
|
309
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
310
|
+
</output>
|
311
|
+
</operation>
|
312
|
+
<operation name="getAllOwnedAccounts">
|
313
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
314
|
+
<input>
|
315
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
316
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
317
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
318
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
319
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
320
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
321
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
322
|
+
</input>
|
323
|
+
<output>
|
324
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
325
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
326
|
+
</output>
|
327
|
+
</operation>
|
328
|
+
<operation name="getAllTicketSubjects">
|
329
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
330
|
+
<input>
|
331
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
332
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
333
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
334
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
335
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
336
|
+
</input>
|
337
|
+
<output>
|
338
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
339
|
+
</output>
|
340
|
+
</operation>
|
341
|
+
<operation name="getAllowAccountCreationFlag">
|
342
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
343
|
+
<input>
|
344
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
345
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
346
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
347
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
348
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
349
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
350
|
+
</input>
|
351
|
+
<output>
|
352
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
353
|
+
</output>
|
354
|
+
</operation>
|
355
|
+
<operation name="getCatalog">
|
356
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
357
|
+
<input>
|
358
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
359
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
360
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
361
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
362
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
363
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
364
|
+
</input>
|
365
|
+
<output>
|
366
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
367
|
+
</output>
|
368
|
+
</operation>
|
369
|
+
<operation name="getContactInformation">
|
370
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
371
|
+
<input>
|
372
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
373
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
374
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
375
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
376
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
377
|
+
</input>
|
378
|
+
<output>
|
379
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
380
|
+
</output>
|
381
|
+
</operation>
|
382
|
+
<operation name="getContacts">
|
383
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
384
|
+
<input>
|
385
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
386
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
387
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
388
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
389
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
390
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
391
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
392
|
+
</input>
|
393
|
+
<output>
|
394
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
395
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
396
|
+
</output>
|
397
|
+
</operation>
|
398
|
+
<operation name="getCustomerCountryLocationRestrictions">
|
399
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
400
|
+
<input>
|
401
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
402
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
403
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
404
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
405
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
406
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
407
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
408
|
+
</input>
|
409
|
+
<output>
|
410
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
411
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
412
|
+
</output>
|
413
|
+
</operation>
|
414
|
+
<operation name="getDistributor">
|
415
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
416
|
+
<input>
|
417
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
418
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
419
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
420
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
421
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
422
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
423
|
+
</input>
|
424
|
+
<output>
|
425
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
426
|
+
</output>
|
427
|
+
</operation>
|
428
|
+
<operation name="getDistributorChildFlag">
|
429
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
430
|
+
<input>
|
431
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
432
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
433
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
434
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
435
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
436
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
437
|
+
</input>
|
438
|
+
<output>
|
439
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
440
|
+
</output>
|
441
|
+
</operation>
|
442
|
+
<operation name="getDistributorFlag">
|
443
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
444
|
+
<input>
|
445
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
446
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
447
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
448
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
449
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
450
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
451
|
+
</input>
|
452
|
+
<output>
|
453
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
454
|
+
</output>
|
455
|
+
</operation>
|
456
|
+
<operation name="getHardware">
|
457
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
458
|
+
<input>
|
459
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
460
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
461
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
462
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
463
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
464
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
465
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
466
|
+
</input>
|
467
|
+
<output>
|
468
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
469
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
470
|
+
</output>
|
471
|
+
</operation>
|
472
|
+
<operation name="getHasAgentSupportFlag">
|
473
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
474
|
+
<input>
|
475
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
476
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
477
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
478
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
479
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
480
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
481
|
+
</input>
|
482
|
+
<output>
|
483
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
484
|
+
</output>
|
485
|
+
</operation>
|
486
|
+
<operation name="getMerchantName">
|
487
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
488
|
+
<input>
|
489
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
490
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
491
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
492
|
+
</input>
|
493
|
+
<output>
|
494
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
495
|
+
</output>
|
496
|
+
</operation>
|
497
|
+
<operation name="getObject">
|
498
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
499
|
+
<input>
|
500
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
501
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
502
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
503
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
504
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
505
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
506
|
+
</input>
|
507
|
+
<output>
|
508
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
509
|
+
</output>
|
510
|
+
</operation>
|
511
|
+
<operation name="getOpenTickets">
|
512
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
513
|
+
<input>
|
514
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
515
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
516
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
517
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
518
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
519
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
520
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
521
|
+
</input>
|
522
|
+
<output>
|
523
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
524
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
525
|
+
</output>
|
526
|
+
</operation>
|
527
|
+
<operation name="getOwnedAccounts">
|
528
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
529
|
+
<input>
|
530
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
531
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
532
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
533
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
534
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
535
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
536
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
537
|
+
</input>
|
538
|
+
<output>
|
539
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
540
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
541
|
+
</output>
|
542
|
+
</operation>
|
543
|
+
<operation name="getTicketGroups">
|
544
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
545
|
+
<input>
|
546
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
547
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
548
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
549
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
550
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
551
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
552
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
553
|
+
</input>
|
554
|
+
<output>
|
555
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
556
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
557
|
+
</output>
|
558
|
+
</operation>
|
559
|
+
<operation name="getTickets">
|
560
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
561
|
+
<input>
|
562
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
563
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
564
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
565
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
566
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
567
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
568
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
569
|
+
</input>
|
570
|
+
<output>
|
571
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
572
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
573
|
+
</output>
|
574
|
+
</operation>
|
575
|
+
<operation name="getToken">
|
576
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
577
|
+
<input>
|
578
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
579
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
580
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
581
|
+
</input>
|
582
|
+
<output>
|
583
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
584
|
+
</output>
|
585
|
+
</operation>
|
586
|
+
<operation name="getUsers">
|
587
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
588
|
+
<input>
|
589
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
590
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
591
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
592
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
593
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
594
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
595
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
596
|
+
</input>
|
597
|
+
<output>
|
598
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
599
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
600
|
+
</output>
|
601
|
+
</operation>
|
602
|
+
<operation name="getVirtualGuests">
|
603
|
+
<soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
|
604
|
+
<input>
|
605
|
+
<soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
606
|
+
<soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
607
|
+
<soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
608
|
+
<soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
609
|
+
<soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
610
|
+
<soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
611
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
612
|
+
</input>
|
613
|
+
<output>
|
614
|
+
<soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
615
|
+
<soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
616
|
+
</output>
|
617
|
+
</operation>
|
618
|
+
</binding>
|
619
|
+
<service name="SoftLayer_BrandService">
|
620
|
+
<port name="SoftLayer_BrandPort" binding="tns:SoftLayer_BrandBinding">
|
621
|
+
<soap:address location="https://api.softlayer.com/soap/v3/SoftLayer_Brand"/>
|
622
|
+
</port>
|
623
|
+
</service>
|
624
|
+
</definitions>
|