softlayer 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/data/.services_cache +42 -36
  3. data/data/Account.wsdl +22 -0
  4. data/data/Account_Link_Bluemix.wsdl +2 -3
  5. data/data/Billing_Order_Cart.wsdl +2 -2
  6. data/data/Billing_Order_Quote.wsdl +2 -2
  7. data/data/Hardware_SecurityModule.wsdl +6 -0
  8. data/data/Hardware_Server.wsdl +6 -0
  9. data/data/Network_Bandwidth_Version1_Allotment.wsdl +4 -81
  10. data/data/Product_Order.wsdl +17 -2
  11. data/data/Product_Package.wsdl +3 -0
  12. data/data/Ticket_Priority.wsdl +66 -0
  13. data/data/Ticket_Survey.wsdl +6 -2
  14. data/data/User_Customer.wsdl +147 -6
  15. data/data/User_Customer_OpenIdConnect.wsdl +224 -51
  16. data/data/Virtual_Disk_Image.wsdl +23 -0
  17. data/data/Virtual_Guest.wsdl +26 -0
  18. data/data/types.xsd +180 -2
  19. data/lib/softlayer/account.rb +6 -0
  20. data/lib/softlayer/account/authentication.rb +1 -0
  21. data/lib/softlayer/account/authentication/open_id_connect.rb +10 -0
  22. data/lib/softlayer/account/authentication/open_id_connect/option.rb +19 -0
  23. data/lib/softlayer/account/authentication/open_id_connect/registration_information.rb +20 -0
  24. data/lib/softlayer/account/link/bluemix.rb +2 -3
  25. data/lib/softlayer/container/network/storage/backup/evault/web_cc/authentication/details.rb +2 -0
  26. data/lib/softlayer/container/product/order/network/storage.rb +1 -0
  27. data/lib/softlayer/container/product/order/network/storage/object.rb +19 -0
  28. data/lib/softlayer/container/product/order/virtual/guest.rb +2 -0
  29. data/lib/softlayer/container/ticket.rb +1 -0
  30. data/lib/softlayer/container/ticket/priority.rb +17 -0
  31. data/lib/softlayer/container/user/customer.rb +1 -0
  32. data/lib/softlayer/container/user/customer/external/binding.rb +6 -0
  33. data/lib/softlayer/container/user/customer/password_set.rb +27 -0
  34. data/lib/softlayer/hardware/security_module.rb +1 -0
  35. data/lib/softlayer/hardware/server.rb +1 -0
  36. data/lib/softlayer/network/bandwidth/version1/allotment.rb +1 -8
  37. data/lib/softlayer/product/package/server.rb +2 -0
  38. data/lib/softlayer/ticket.rb +1 -0
  39. data/lib/softlayer/ticket/priority.rb +16 -0
  40. data/lib/softlayer/user/customer.rb +34 -0
  41. data/lib/softlayer/user/customer/open_id_connect.rb +63 -14
  42. data/lib/softlayer/version.rb +1 -1
  43. data/lib/softlayer/virtual/disk/image.rb +6 -0
  44. data/lib/softlayer/virtual/guest.rb +6 -0
  45. metadata +10 -2
@@ -35,6 +35,10 @@
35
35
  <message name="getBlockDevicesResponse">
36
36
  <part name="getBlockDevicesReturn" type="tns:SoftLayer_Virtual_Guest_Block_DeviceArray"/>
37
37
  </message>
38
+ <message name="getBootableVolumeFlag"/>
39
+ <message name="getBootableVolumeFlagResponse">
40
+ <part name="getBootableVolumeFlagReturn" type="xsd:boolean"/>
41
+ </message>
38
42
  <message name="getCoalescedDiskImages"/>
39
43
  <message name="getCoalescedDiskImagesResponse">
40
44
  <part name="getCoalescedDiskImagesReturn" type="tns:SoftLayer_Virtual_Disk_ImageArray"/>
@@ -118,6 +122,11 @@
118
122
  <input message="tns:getBlockDevices"/>
119
123
  <output message="tns:getBlockDevicesResponse"/>
120
124
  </operation>
125
+ <operation name="getBootableVolumeFlag">
126
+ <documentation></documentation>
127
+ <input message="tns:getBootableVolumeFlag"/>
128
+ <output message="tns:getBootableVolumeFlagResponse"/>
129
+ </operation>
121
130
  <operation name="getCoalescedDiskImages">
122
131
  <documentation></documentation>
123
132
  <input message="tns:getCoalescedDiskImages"/>
@@ -222,6 +231,20 @@
222
231
  <soap:body namespace="http://api.service.softlayer.com/soap/v3.1/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
223
232
  </output>
224
233
  </operation>
234
+ <operation name="getBootableVolumeFlag">
235
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3.1/SoftLayer_Virtual_Disk_ImageAction"/>
236
+ <input>
237
+ <soap:header message="tns:SoftLayer_Virtual_Disk_ImageObjectMaskHeader" part="SoftLayer_Virtual_Disk_ImageObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
238
+ <soap:header message="tns:SoftLayer_Virtual_Disk_ImageObjectFilterHeader" part="SoftLayer_Virtual_Disk_ImageObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
239
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
240
+ <soap:header message="tns:SoftLayer_Virtual_Disk_ImageInitParametersHeader" part="SoftLayer_Virtual_Disk_ImageInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
241
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
242
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3.1/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
243
+ </input>
244
+ <output>
245
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3.1/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
246
+ </output>
247
+ </operation>
225
248
  <operation name="getCoalescedDiskImages">
226
249
  <soap:operation soapAction="http://api.service.softlayer.com/soap/v3.1/SoftLayer_Virtual_Disk_ImageAction"/>
227
250
  <input>
@@ -72,6 +72,11 @@
72
72
  <xsd:documentation>specified_day</xsd:documentation>
73
73
  </xsd:annotation>
74
74
  </xsd:enumeration>
75
+ <xsd:enumeration value="specified_range">
76
+ <xsd:annotation>
77
+ <xsd:documentation>specified_range</xsd:documentation>
78
+ </xsd:annotation>
79
+ </xsd:enumeration>
75
80
  </xsd:restriction>
76
81
  </xsd:simpleType>
77
82
  <xsd:simpleType name="getCpuMetricImage_snapshotRange">
@@ -160,6 +165,11 @@
160
165
  <xsd:documentation>specified_day</xsd:documentation>
161
166
  </xsd:annotation>
162
167
  </xsd:enumeration>
168
+ <xsd:enumeration value="specified_range">
169
+ <xsd:annotation>
170
+ <xsd:documentation>specified_range</xsd:documentation>
171
+ </xsd:annotation>
172
+ </xsd:enumeration>
163
173
  </xsd:restriction>
164
174
  </xsd:simpleType>
165
175
  <xsd:simpleType name="getOrderTemplate_billingType">
@@ -281,6 +291,9 @@
281
291
  <message name="executeR1SoftBareMetalRestoreResponse">
282
292
  <part name="executeR1SoftBareMetalRestoreReturn" type="xsd:boolean"/>
283
293
  </message>
294
+ <message name="executeRemoteScript">
295
+ <part name="uri" type="xsd:string"/>
296
+ </message>
284
297
  <message name="executeRescueLayer"/>
285
298
  <message name="executeRescueLayerResponse">
286
299
  <part name="executeRescueLayerReturn" type="xsd:boolean"/>
@@ -422,6 +435,7 @@
422
435
  <part name="networkType" type="tns:getBandwidthImage_networkType"/>
423
436
  <part name="snapshotRange" type="tns:getBandwidthImage_snapshotRange"/>
424
437
  <part name="dateSpecified" type="xsd:dateTime"/>
438
+ <part name="dateSpecifiedEnd" type="xsd:dateTime"/>
425
439
  </message>
426
440
  <message name="getBandwidthImageResponse">
427
441
  <part name="getBandwidthImageReturn" type="tns:SoftLayer_Container_Bandwidth_GraphOutputs"/>
@@ -1533,6 +1547,10 @@ WARNING: The transaction created by this service will shut down the guest while
1533
1547
  <input message="tns:executeR1SoftBareMetalRestore"/>
1534
1548
  <output message="tns:executeR1SoftBareMetalRestoreResponse"/>
1535
1549
  </operation>
1550
+ <operation name="executeRemoteScript">
1551
+ <documentation>Download and run remote script from uri on virtual guests.</documentation>
1552
+ <input message="tns:executeRemoteScript"/>
1553
+ </operation>
1536
1554
  <operation name="executeRescueLayer">
1537
1555
  <documentation>Reboot a Linux guest into the Xen rescue image. </documentation>
1538
1556
  <input message="tns:executeRescueLayer"/>
@@ -2617,6 +2635,14 @@ It will take less than a minute to update the port speed. </documentation>
2617
2635
  <soap:body namespace="http://api.service.softlayer.com/soap/v3.1/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2618
2636
  </output>
2619
2637
  </operation>
2638
+ <operation name="executeRemoteScript">
2639
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3.1/SoftLayer_Virtual_GuestAction"/>
2640
+ <input>
2641
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2642
+ <soap:header message="tns:SoftLayer_Virtual_GuestInitParametersHeader" part="SoftLayer_Virtual_GuestInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2643
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3.1/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2644
+ </input>
2645
+ </operation>
2620
2646
  <operation name="executeRescueLayer">
2621
2647
  <soap:operation soapAction="http://api.service.softlayer.com/soap/v3.1/SoftLayer_Virtual_GuestAction"/>
2622
2648
  <input>
@@ -922,6 +922,7 @@
922
922
  <element minOccurs="0" maxOccurs="1" name="billingAgreements" type="tns:SoftLayer_Account_AgreementArray"/>
923
923
  <element minOccurs="0" maxOccurs="1" name="billingInfo" type="tns:SoftLayer_Billing_Info"/>
924
924
  <element minOccurs="0" maxOccurs="1" name="blockDeviceTemplateGroups" type="tns:SoftLayer_Virtual_Guest_Block_Device_Template_GroupArray"/>
925
+ <element minOccurs="0" maxOccurs="1" name="blueIdAuthenticationRequiredFlag" type="boolean"/>
925
926
  <element minOccurs="0" maxOccurs="1" name="bluemixLinkedFlag" type="boolean"/>
926
927
  <element minOccurs="0" maxOccurs="1" name="brand" type="tns:SoftLayer_Brand"/>
927
928
  <element minOccurs="0" maxOccurs="1" name="brandAccountFlag" type="boolean"/>
@@ -1218,6 +1219,7 @@
1218
1219
  <element minOccurs="0" maxOccurs="1" name="billingAgreements" type="tns:SoftLayer_Account_AgreementObjectFilter"/>
1219
1220
  <element minOccurs="0" maxOccurs="1" name="billingInfo" type="tns:SoftLayer_Billing_InfoObjectFilter"/>
1220
1221
  <element minOccurs="0" maxOccurs="1" name="blockDeviceTemplateGroups" type="tns:SoftLayer_Virtual_Guest_Block_Device_Template_GroupObjectFilter"/>
1222
+ <element minOccurs="0" maxOccurs="1" name="blueIdAuthenticationRequiredFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
1221
1223
  <element minOccurs="0" maxOccurs="1" name="bluemixLinkedFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
1222
1224
  <element minOccurs="0" maxOccurs="1" name="brand" type="tns:SoftLayer_BrandObjectFilter"/>
1223
1225
  <element minOccurs="0" maxOccurs="1" name="brandAccountFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
@@ -1876,6 +1878,62 @@
1876
1878
  </restriction>
1877
1879
  </complexContent>
1878
1880
  </complexType>
1881
+ <complexType name="SoftLayer_Account_Authentication_OpenIdConnect_Option">
1882
+ <complexContent>
1883
+ <extension base="tns:SoftLayer_Entity">
1884
+ <sequence>
1885
+ <element minOccurs="0" maxOccurs="1" name="key" type="string"/>
1886
+ <element minOccurs="0" maxOccurs="1" name="value" type="string"/>
1887
+ </sequence>
1888
+ </extension>
1889
+ </complexContent>
1890
+ </complexType>
1891
+ <complexType name="SoftLayer_Account_Authentication_OpenIdConnect_OptionObjectFilter">
1892
+ <complexContent>
1893
+ <extension base="tns:SoftLayer_Utility_ObjectFilter">
1894
+ <sequence>
1895
+ <element minOccurs="0" maxOccurs="1" name="key" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
1896
+ <element minOccurs="0" maxOccurs="1" name="value" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
1897
+ </sequence>
1898
+ </extension>
1899
+ </complexContent>
1900
+ </complexType>
1901
+ <complexType name="SoftLayer_Account_Authentication_OpenIdConnect_OptionArray">
1902
+ <complexContent>
1903
+ <restriction base="soapenc:Array">
1904
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="tns:SoftLayer_Account_Authentication_OpenIdConnect_Option[]"/>
1905
+ </restriction>
1906
+ </complexContent>
1907
+ </complexType>
1908
+ <complexType name="SoftLayer_Account_Authentication_OpenIdConnect_RegistrationInformation">
1909
+ <complexContent>
1910
+ <extension base="tns:SoftLayer_Entity">
1911
+ <sequence>
1912
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="existingBlueIdFlag" type="boolean"/>
1913
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="federatedEmailDomainFlag" type="boolean"/>
1914
+ <element minOccurs="0" maxOccurs="1" name="user" type="tns:SoftLayer_User_Customer"/>
1915
+ </sequence>
1916
+ </extension>
1917
+ </complexContent>
1918
+ </complexType>
1919
+ <complexType name="SoftLayer_Account_Authentication_OpenIdConnect_RegistrationInformationObjectFilter">
1920
+ <complexContent>
1921
+ <extension base="tns:SoftLayer_Utility_ObjectFilter">
1922
+ <sequence>
1923
+ <element minOccurs="0" maxOccurs="1" name="existingBlueIdFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
1924
+ <element minOccurs="0" maxOccurs="1" name="federatedEmailDomainFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
1925
+ <element minOccurs="0" maxOccurs="1" name="user" type="tns:SoftLayer_User_CustomerObjectFilter"/>
1926
+ </sequence>
1927
+ </extension>
1928
+ </complexContent>
1929
+ </complexType>
1930
+ <complexType name="SoftLayer_Account_Authentication_OpenIdConnect_RegistrationInformationArray">
1931
+ <complexContent>
1932
+ <restriction base="soapenc:Array">
1933
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="tns:SoftLayer_Account_Authentication_OpenIdConnect_RegistrationInformation[]"/>
1934
+ </restriction>
1935
+ </complexContent>
1936
+ </complexType>
1879
1937
  <complexType name="SoftLayer_Account_Authentication_Saml">
1880
1938
  <complexContent>
1881
1939
  <extension base="tns:SoftLayer_Entity">
@@ -11220,6 +11278,7 @@
11220
11278
  <sequence>
11221
11279
  <element minOccurs="0" maxOccurs="1" name="eventValidation" type="string"/>
11222
11280
  <element minOccurs="0" maxOccurs="1" name="viewState" type="string"/>
11281
+ <element minOccurs="0" maxOccurs="1" name="webCcUrl" type="string"/>
11223
11282
  </sequence>
11224
11283
  </extension>
11225
11284
  </complexContent>
@@ -11230,6 +11289,7 @@
11230
11289
  <sequence>
11231
11290
  <element minOccurs="0" maxOccurs="1" name="eventValidation" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
11232
11291
  <element minOccurs="0" maxOccurs="1" name="viewState" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
11292
+ <element minOccurs="0" maxOccurs="1" name="webCcUrl" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
11233
11293
  </sequence>
11234
11294
  </extension>
11235
11295
  </complexContent>
@@ -12945,6 +13005,23 @@
12945
13005
  </restriction>
12946
13006
  </complexContent>
12947
13007
  </complexType>
13008
+ <complexType name="SoftLayer_Container_Product_Order_Network_Storage_Object">
13009
+ <complexContent>
13010
+ <extension base="tns:SoftLayer_Container_Product_Order"/>
13011
+ </complexContent>
13012
+ </complexType>
13013
+ <complexType name="SoftLayer_Container_Product_Order_Network_Storage_ObjectObjectFilter">
13014
+ <complexContent>
13015
+ <extension base="tns:SoftLayer_Container_Product_OrderObjectFilter"/>
13016
+ </complexContent>
13017
+ </complexType>
13018
+ <complexType name="SoftLayer_Container_Product_Order_Network_Storage_ObjectArray">
13019
+ <complexContent>
13020
+ <restriction base="soapenc:Array">
13021
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="tns:SoftLayer_Container_Product_Order_Network_Storage_Object[]"/>
13022
+ </restriction>
13023
+ </complexContent>
13024
+ </complexType>
12948
13025
  <complexType name="SoftLayer_Container_Product_Order_Network_Subnet">
12949
13026
  <complexContent>
12950
13027
  <extension base="tns:SoftLayer_Container_Product_Order">
@@ -13361,12 +13438,20 @@
13361
13438
  </complexType>
13362
13439
  <complexType name="SoftLayer_Container_Product_Order_Virtual_Guest">
13363
13440
  <complexContent>
13364
- <extension base="tns:SoftLayer_Container_Product_Order_Hardware_Server"/>
13441
+ <extension base="tns:SoftLayer_Container_Product_Order_Hardware_Server">
13442
+ <sequence>
13443
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="bootableDiskId" type="int"/>
13444
+ </sequence>
13445
+ </extension>
13365
13446
  </complexContent>
13366
13447
  </complexType>
13367
13448
  <complexType name="SoftLayer_Container_Product_Order_Virtual_GuestObjectFilter">
13368
13449
  <complexContent>
13369
- <extension base="tns:SoftLayer_Container_Product_Order_Hardware_ServerObjectFilter"/>
13450
+ <extension base="tns:SoftLayer_Container_Product_Order_Hardware_ServerObjectFilter">
13451
+ <sequence>
13452
+ <element minOccurs="0" maxOccurs="1" name="bootableDiskId" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
13453
+ </sequence>
13454
+ </extension>
13370
13455
  </complexContent>
13371
13456
  </complexType>
13372
13457
  <complexType name="SoftLayer_Container_Product_Order_Virtual_GuestArray">
@@ -14021,6 +14106,33 @@
14021
14106
  </restriction>
14022
14107
  </complexContent>
14023
14108
  </complexType>
14109
+ <complexType name="SoftLayer_Container_Ticket_Priority">
14110
+ <complexContent>
14111
+ <extension base="tns:SoftLayer_Entity">
14112
+ <sequence>
14113
+ <element minOccurs="0" maxOccurs="1" name="name" type="string"/>
14114
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="value" type="int"/>
14115
+ </sequence>
14116
+ </extension>
14117
+ </complexContent>
14118
+ </complexType>
14119
+ <complexType name="SoftLayer_Container_Ticket_PriorityObjectFilter">
14120
+ <complexContent>
14121
+ <extension base="tns:SoftLayer_Utility_ObjectFilter">
14122
+ <sequence>
14123
+ <element minOccurs="0" maxOccurs="1" name="name" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14124
+ <element minOccurs="0" maxOccurs="1" name="value" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14125
+ </sequence>
14126
+ </extension>
14127
+ </complexContent>
14128
+ </complexType>
14129
+ <complexType name="SoftLayer_Container_Ticket_PriorityArray">
14130
+ <complexContent>
14131
+ <restriction base="soapenc:Array">
14132
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="tns:SoftLayer_Container_Ticket_Priority[]"/>
14133
+ </restriction>
14134
+ </complexContent>
14135
+ </complexType>
14024
14136
  <complexType name="SoftLayer_Container_Ticket_Survey_Preference">
14025
14137
  <complexContent>
14026
14138
  <extension base="tns:SoftLayer_Entity">
@@ -14084,6 +14196,9 @@
14084
14196
  <extension base="tns:SoftLayer_Entity">
14085
14197
  <sequence>
14086
14198
  <element minOccurs="0" maxOccurs="1" name="authenticationToken" type="string"/>
14199
+ <element minOccurs="0" maxOccurs="1" name="openIdConnectAccessToken" type="string"/>
14200
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="openIdConnectAccountId" type="int"/>
14201
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="openIdConnectProvider" type="int"/>
14087
14202
  <element minOccurs="0" maxOccurs="1" name="password" type="string"/>
14088
14203
  <element minOccurs="0" maxOccurs="1" name="securityQuestionAnswer" type="string"/>
14089
14204
  <element minOccurs="0" maxOccurs="1" nillable="true" name="securityQuestionId" type="int"/>
@@ -14098,6 +14213,9 @@
14098
14213
  <extension base="tns:SoftLayer_Utility_ObjectFilter">
14099
14214
  <sequence>
14100
14215
  <element minOccurs="0" maxOccurs="1" name="authenticationToken" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14216
+ <element minOccurs="0" maxOccurs="1" name="openIdConnectAccessToken" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14217
+ <element minOccurs="0" maxOccurs="1" name="openIdConnectAccountId" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14218
+ <element minOccurs="0" maxOccurs="1" name="openIdConnectProvider" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14101
14219
  <element minOccurs="0" maxOccurs="1" name="password" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14102
14220
  <element minOccurs="0" maxOccurs="1" name="securityQuestionAnswer" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14103
14221
  <element minOccurs="0" maxOccurs="1" name="securityQuestionId" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
@@ -14239,6 +14357,43 @@
14239
14357
  </restriction>
14240
14358
  </complexContent>
14241
14359
  </complexType>
14360
+ <complexType name="SoftLayer_Container_User_Customer_PasswordSet">
14361
+ <complexContent>
14362
+ <extension base="tns:SoftLayer_Entity">
14363
+ <sequence>
14364
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="answeredSecurityQuestionId" type="int"/>
14365
+ <element minOccurs="0" maxOccurs="1" name="authenticationMethods" type="tns:ArrayOfint"/>
14366
+ <element minOccurs="0" maxOccurs="1" name="key" type="string"/>
14367
+ <element minOccurs="0" maxOccurs="1" name="password" type="string"/>
14368
+ <element minOccurs="0" maxOccurs="1" name="securityAnswer" type="string"/>
14369
+ <element minOccurs="0" maxOccurs="1" name="securityQuestions" type="tns:SoftLayer_User_Security_QuestionArray"/>
14370
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="userId" type="int"/>
14371
+ </sequence>
14372
+ </extension>
14373
+ </complexContent>
14374
+ </complexType>
14375
+ <complexType name="SoftLayer_Container_User_Customer_PasswordSetObjectFilter">
14376
+ <complexContent>
14377
+ <extension base="tns:SoftLayer_Utility_ObjectFilter">
14378
+ <sequence>
14379
+ <element minOccurs="0" maxOccurs="1" name="answeredSecurityQuestionId" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14380
+ <element minOccurs="0" maxOccurs="1" name="authenticationMethods" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14381
+ <element minOccurs="0" maxOccurs="1" name="key" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14382
+ <element minOccurs="0" maxOccurs="1" name="password" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14383
+ <element minOccurs="0" maxOccurs="1" name="securityAnswer" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14384
+ <element minOccurs="0" maxOccurs="1" name="securityQuestions" type="tns:SoftLayer_User_Security_QuestionObjectFilter"/>
14385
+ <element minOccurs="0" maxOccurs="1" name="userId" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
14386
+ </sequence>
14387
+ </extension>
14388
+ </complexContent>
14389
+ </complexType>
14390
+ <complexType name="SoftLayer_Container_User_Customer_PasswordSetArray">
14391
+ <complexContent>
14392
+ <restriction base="soapenc:Array">
14393
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="tns:SoftLayer_Container_User_Customer_PasswordSet[]"/>
14394
+ </restriction>
14395
+ </complexContent>
14396
+ </complexType>
14242
14397
  <complexType name="SoftLayer_Container_User_Customer_Portal_MobileToken">
14243
14398
  <complexContent>
14244
14399
  <extension base="tns:SoftLayer_Container_User_Customer_Portal_Token">
@@ -28220,6 +28375,7 @@
28220
28375
  <element minOccurs="0" maxOccurs="1" name="processorSpeed" type="string"/>
28221
28376
  <element minOccurs="0" maxOccurs="1" name="productName" type="string"/>
28222
28377
  <element minOccurs="0" maxOccurs="1" nillable="true" name="redundantPowerFlag" type="boolean"/>
28378
+ <element minOccurs="0" maxOccurs="1" nillable="true" name="sapCertifiedServerFlag" type="boolean"/>
28223
28379
  <element minOccurs="0" maxOccurs="1" name="startingHourlyPrice" type="decimal"/>
28224
28380
  <element minOccurs="0" maxOccurs="1" name="startingMonthlyPrice" type="decimal"/>
28225
28381
  <element minOccurs="0" maxOccurs="1" nillable="true" name="totalCoreCount" type="int"/>
@@ -28267,6 +28423,7 @@
28267
28423
  <element minOccurs="0" maxOccurs="1" name="processorSpeed" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
28268
28424
  <element minOccurs="0" maxOccurs="1" name="productName" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
28269
28425
  <element minOccurs="0" maxOccurs="1" name="redundantPowerFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
28426
+ <element minOccurs="0" maxOccurs="1" name="sapCertifiedServerFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
28270
28427
  <element minOccurs="0" maxOccurs="1" name="startingHourlyPrice" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
28271
28428
  <element minOccurs="0" maxOccurs="1" name="startingMonthlyPrice" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
28272
28429
  <element minOccurs="0" maxOccurs="1" name="totalCoreCount" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
@@ -32977,6 +33134,23 @@
32977
33134
  </restriction>
32978
33135
  </complexContent>
32979
33136
  </complexType>
33137
+ <complexType name="SoftLayer_Ticket_Priority">
33138
+ <complexContent>
33139
+ <extension base="tns:SoftLayer_Entity"/>
33140
+ </complexContent>
33141
+ </complexType>
33142
+ <complexType name="SoftLayer_Ticket_PriorityObjectFilter">
33143
+ <complexContent>
33144
+ <extension base="tns:SoftLayer_Utility_ObjectFilter"/>
33145
+ </complexContent>
33146
+ </complexType>
33147
+ <complexType name="SoftLayer_Ticket_PriorityArray">
33148
+ <complexContent>
33149
+ <restriction base="soapenc:Array">
33150
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="tns:SoftLayer_Ticket_Priority[]"/>
33151
+ </restriction>
33152
+ </complexContent>
33153
+ </complexType>
32980
33154
  <complexType name="SoftLayer_Ticket_State">
32981
33155
  <complexContent>
32982
33156
  <extension base="tns:SoftLayer_Entity">
@@ -33467,6 +33641,7 @@
33467
33641
  <element minOccurs="0" maxOccurs="1" name="msn" type="string"/>
33468
33642
  <element minOccurs="0" maxOccurs="1" name="nameId" type="string"/>
33469
33643
  <element minOccurs="0" maxOccurs="1" name="officePhone" type="string"/>
33644
+ <element minOccurs="0" maxOccurs="1" name="openIdConnectUserName" type="string"/>
33470
33645
  <element minOccurs="0" maxOccurs="1" nillable="true" name="parentId" type="int"/>
33471
33646
  <element minOccurs="0" maxOccurs="1" nillable="true" name="passwordExpireDate" type="dateTime"/>
33472
33647
  <element minOccurs="0" maxOccurs="1" nillable="true" name="permissionSystemVersion" type="int"/>
@@ -33584,6 +33759,7 @@
33584
33759
  <element minOccurs="0" maxOccurs="1" name="msn" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
33585
33760
  <element minOccurs="0" maxOccurs="1" name="nameId" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
33586
33761
  <element minOccurs="0" maxOccurs="1" name="officePhone" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
33762
+ <element minOccurs="0" maxOccurs="1" name="openIdConnectUserName" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
33587
33763
  <element minOccurs="0" maxOccurs="1" name="parentId" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
33588
33764
  <element minOccurs="0" maxOccurs="1" name="passwordExpireDate" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
33589
33765
  <element minOccurs="0" maxOccurs="1" name="permissionSystemVersion" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
@@ -35020,6 +35196,7 @@
35020
35196
  <element minOccurs="0" maxOccurs="1" name="softwareReferenceCount" type="unsignedLong"/>
35021
35197
  <element minOccurs="0" maxOccurs="1" name="billingItem" type="tns:SoftLayer_Billing_Item_Virtual_Disk_Image"/>
35022
35198
  <element minOccurs="0" maxOccurs="1" name="blockDevices" type="tns:SoftLayer_Virtual_Guest_Block_DeviceArray"/>
35199
+ <element minOccurs="0" maxOccurs="1" name="bootableVolumeFlag" type="boolean"/>
35023
35200
  <element minOccurs="0" maxOccurs="1" name="coalescedDiskImages" type="tns:SoftLayer_Virtual_Disk_ImageArray"/>
35024
35201
  <element minOccurs="0" maxOccurs="1" name="copyOnWriteFlag" type="boolean"/>
35025
35202
  <element minOccurs="0" maxOccurs="1" name="localDiskFlag" type="boolean"/>
@@ -35052,6 +35229,7 @@
35052
35229
  <element minOccurs="0" maxOccurs="1" name="uuid" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
35053
35230
  <element minOccurs="0" maxOccurs="1" name="billingItem" type="tns:SoftLayer_Billing_Item_Virtual_Disk_ImageObjectFilter"/>
35054
35231
  <element minOccurs="0" maxOccurs="1" name="blockDevices" type="tns:SoftLayer_Virtual_Guest_Block_DeviceObjectFilter"/>
35232
+ <element minOccurs="0" maxOccurs="1" name="bootableVolumeFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
35055
35233
  <element minOccurs="0" maxOccurs="1" name="coalescedDiskImages" type="tns:SoftLayer_Virtual_Disk_ImageObjectFilter"/>
35056
35234
  <element minOccurs="0" maxOccurs="1" name="copyOnWriteFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
35057
35235
  <element minOccurs="0" maxOccurs="1" name="localDiskFlag" type="tns:SoftLayer_Utility_ObjectFilter_Operation"/>
@@ -264,6 +264,7 @@ module Softlayer
264
264
  attr_accessor :billing_agreements
265
265
  attr_accessor :billing_info
266
266
  attr_accessor :block_device_template_groups
267
+ attr_accessor :blue_id_authentication_required_flag
267
268
  attr_accessor :bluemix_linked_flag
268
269
  attr_accessor :brand
269
270
  attr_accessor :brand_account_flag
@@ -710,6 +711,10 @@ module Softlayer
710
711
  request(:get_block_device_template_groups, Array[Softlayer::Virtual::Guest::Block::Device::Template::Group])
711
712
  end
712
713
 
714
+ def self.get_blue_id_authentication_required_flag
715
+ request(:get_blue_id_authentication_required_flag, Boolean)
716
+ end
717
+
713
718
  def self.get_bluemix_linked_flag
714
719
  request(:get_bluemix_linked_flag, Boolean)
715
720
  end
@@ -1911,6 +1916,7 @@ module Softlayer
1911
1916
  property :affiliate_id, type: String
1912
1917
  property :allows_bluemix_account_linking_flag, type: Boolean
1913
1918
  property :balance, type: Float
1919
+ property :blue_id_authentication_required_flag, type: Boolean
1914
1920
  property :bluemix_linked_flag, type: Boolean
1915
1921
  property :brand_account_flag, type: Boolean
1916
1922
  property :brand_key_name, type: String
@@ -3,6 +3,7 @@ module Softlayer
3
3
  module Authentication
4
4
  autoload :Attribute, 'softlayer/account/authentication/attribute'
5
5
  autoload :Saml, 'softlayer/account/authentication/saml'
6
+ autoload :OpenIdConnect, 'softlayer/account/authentication/open_id_connect'
6
7
  end
7
8
  end
8
9
  end
@@ -0,0 +1,10 @@
1
+ module Softlayer
2
+ class Account
3
+ module Authentication
4
+ module OpenIdConnect
5
+ autoload :Option, 'softlayer/account/authentication/open_id_connect/option'
6
+ autoload :RegistrationInformation, 'softlayer/account/authentication/open_id_connect/registration_information'
7
+ end
8
+ end
9
+ end
10
+ end