-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathSoftLayer_User_Customer_OpenIdConnect.wsdl
More file actions
3231 lines (3176 loc) · 254 KB
/
Copy pathSoftLayer_User_Customer_OpenIdConnect.wsdl
File metadata and controls
3231 lines (3176 loc) · 254 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://api.service.softlayer.com/soap/v3.1/" 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.1/">
<types>
<xsd:schema targetNamespace="http://api.service.softlayer.com/soap/v3.1/">
<xsd:include namespace="http://api.service.softlayer.com/soap/v3.1/" schemaLocation="https://application.atlas.integration.softlayer.local/v3.1/sldn/soap/SoftLayer_User_Customer_OpenIdConnect?xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://api.service.softlayer.com/soap/v3.1/">
<xsd:complexType name="SoftLayer_User_Customer_OpenIdConnectInitParameters">
<xsd:sequence>
<xsd:element minOccurs="1" maxOccurs="1" name="id" type="xsd:int"/>
<xsd:element minOccurs="0" maxOccurs="1" name="globalIdentifier" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SoftLayer_User_Customer_OpenIdConnectObjectMask">
<xsd:sequence>
<xsd:element minOccurs="1" maxOccurs="1" name="mask" type="tns:SoftLayer_User_Customer_OpenIdConnect"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</types>
<message name="SoftLayer_User_Customer_OpenIdConnectInitParametersHeader">
<part name="SoftLayer_User_Customer_OpenIdConnectInitParameters" type="tns:SoftLayer_User_Customer_OpenIdConnectInitParameters"/>
</message>
<message name="acknowledgeSupportPolicy"/>
<message name="activateOpenIdConnectUser">
<part name="verificationCode" type="xsd:string"/>
<part name="userInfo" type="tns:SoftLayer_User_Customer"/>
<part name="iamId" type="xsd:string"/>
</message>
<message name="addApiAuthenticationKey"/>
<message name="addApiAuthenticationKeyResponse">
<part name="addApiAuthenticationKeyReturn" type="xsd:string"/>
</message>
<message name="addBulkDedicatedHostAccess">
<part name="dedicatedHostIds" type="tns:ArrayOfint"/>
</message>
<message name="addBulkDedicatedHostAccessResponse">
<part name="addBulkDedicatedHostAccessReturn" type="xsd:boolean"/>
</message>
<message name="addBulkHardwareAccess">
<part name="hardwareIds" type="tns:ArrayOfint"/>
</message>
<message name="addBulkHardwareAccessResponse">
<part name="addBulkHardwareAccessReturn" type="xsd:boolean"/>
</message>
<message name="addBulkPortalPermission">
<part name="permissions" type="tns:SoftLayer_User_Customer_CustomerPermission_PermissionArray"/>
</message>
<message name="addBulkPortalPermissionResponse">
<part name="addBulkPortalPermissionReturn" type="xsd:boolean"/>
</message>
<message name="addBulkRoles">
<part name="roles" type="tns:SoftLayer_User_Permission_RoleArray"/>
</message>
<message name="addBulkVirtualGuestAccess">
<part name="virtualGuestIds" type="tns:ArrayOfint"/>
</message>
<message name="addBulkVirtualGuestAccessResponse">
<part name="addBulkVirtualGuestAccessReturn" type="xsd:boolean"/>
</message>
<message name="addDedicatedHostAccess">
<part name="dedicatedHostId" type="xsd:int"/>
</message>
<message name="addDedicatedHostAccessResponse">
<part name="addDedicatedHostAccessReturn" type="xsd:boolean"/>
</message>
<message name="addExternalBinding">
<part name="externalBinding" type="tns:SoftLayer_User_External_Binding"/>
</message>
<message name="addExternalBindingResponse">
<part name="addExternalBindingReturn" type="tns:SoftLayer_User_Customer_External_Binding"/>
</message>
<message name="addHardwareAccess">
<part name="hardwareId" type="xsd:int"/>
</message>
<message name="addHardwareAccessResponse">
<part name="addHardwareAccessReturn" type="xsd:boolean"/>
</message>
<message name="addNotificationSubscriber">
<part name="notificationKeyName" type="xsd:string"/>
</message>
<message name="addNotificationSubscriberResponse">
<part name="addNotificationSubscriberReturn" type="xsd:boolean"/>
</message>
<message name="addPortalPermission">
<part name="permission" type="tns:SoftLayer_User_Customer_CustomerPermission_Permission"/>
</message>
<message name="addPortalPermissionResponse">
<part name="addPortalPermissionReturn" type="xsd:boolean"/>
</message>
<message name="addRole">
<part name="role" type="tns:SoftLayer_User_Permission_Role"/>
</message>
<message name="addVirtualGuestAccess">
<part name="virtualGuestId" type="xsd:int"/>
</message>
<message name="addVirtualGuestAccessResponse">
<part name="addVirtualGuestAccessReturn" type="xsd:boolean"/>
</message>
<message name="assignNewParentId">
<part name="parentId" type="xsd:int"/>
<part name="cascadePermissionsFlag" type="xsd:boolean"/>
</message>
<message name="assignNewParentIdResponse">
<part name="assignNewParentIdReturn" type="tns:SoftLayer_User_Customer_OpenIdConnect"/>
</message>
<message name="bulkDelete">
<part name="accountId" type="xsd:string"/>
<part name="iamIdDeleteList" type="tns:ArrayOfstring"/>
<part name="requestingIamId" type="xsd:string"/>
</message>
<message name="bulkDeleteResponse">
<part name="bulkDeleteReturn" type="tns:SoftLayer_Container_User_Customer_BulkDeleteOneUserResultArray"/>
</message>
<message name="changePreference">
<part name="preferenceTypeKeyName" type="xsd:string"/>
<part name="value" type="xsd:string"/>
</message>
<message name="changePreferenceResponse">
<part name="changePreferenceReturn" type="tns:SoftLayer_User_PreferenceArray"/>
</message>
<message name="checkExternalAuthenticationStatus">
<part name="authenticationContainer" type="tns:SoftLayer_Container_User_Customer_External_Binding"/>
</message>
<message name="checkExternalAuthenticationStatusResponse">
<part name="checkExternalAuthenticationStatusReturn" type="tns:SoftLayer_Container_User_Customer_Portal_Token"/>
</message>
<message name="checkPhoneFactorAuthenticationForPasswordSet">
<part name="passwordSet" type="tns:SoftLayer_Container_User_Customer_PasswordSet"/>
<part name="authenticationContainer" type="tns:SoftLayer_Container_User_Customer_External_Binding"/>
</message>
<message name="checkPhoneFactorAuthenticationForPasswordSetResponse">
<part name="checkPhoneFactorAuthenticationForPasswordSetReturn" type="xsd:boolean"/>
</message>
<message name="completeInvitationAfterLogin">
<part name="providerType" type="xsd:string"/>
<part name="accessToken" type="xsd:string"/>
<part name="emailRegistrationCode" type="xsd:string"/>
</message>
<message name="createNewUserInMultipleAccounts">
<part name="invokingIamId" type="xsd:string"/>
<part name="templateObject" type="tns:SoftLayer_User_Customer"/>
<part name="accountList" type="tns:ArrayOfstring"/>
</message>
<message name="createNewUserInMultipleAccountsResponse">
<part name="createNewUserInMultipleAccountsReturn" type="tns:SoftLayer_Container_User_Customer_OpenIdConnect_CreateUserInMultipleAccountsOneResultArray"/>
</message>
<message name="createNotificationSubscriber">
<part name="keyName" type="xsd:string"/>
<part name="resourceTableId" type="xsd:int"/>
</message>
<message name="createNotificationSubscriberResponse">
<part name="createNotificationSubscriberReturn" type="xsd:boolean"/>
</message>
<message name="createObject">
<part name="templateObject" type="tns:SoftLayer_User_Customer_OpenIdConnect"/>
<part name="password" type="xsd:string"/>
<part name="vpnPassword" type="xsd:string"/>
</message>
<message name="createObjectResponse">
<part name="createObjectReturn" type="tns:SoftLayer_User_Customer_OpenIdConnect"/>
</message>
<message name="createOpenIdConnectUserAndCompleteInvitation">
<part name="providerType" type="xsd:string"/>
<part name="user" type="tns:SoftLayer_User_Customer"/>
<part name="password" type="xsd:string"/>
<part name="registrationCode" type="xsd:string"/>
</message>
<message name="createSubscriberDeliveryMethods">
<part name="notificationKeyName" type="xsd:string"/>
<part name="deliveryMethodKeyNames" type="tns:ArrayOfstring"/>
</message>
<message name="createSubscriberDeliveryMethodsResponse">
<part name="createSubscriberDeliveryMethodsReturn" type="xsd:boolean"/>
</message>
<message name="deactivateNotificationSubscriber">
<part name="keyName" type="xsd:string"/>
<part name="resourceTableId" type="xsd:int"/>
</message>
<message name="deactivateNotificationSubscriberResponse">
<part name="deactivateNotificationSubscriberReturn" type="xsd:boolean"/>
</message>
<message name="declineInvitation">
<part name="providerType" type="xsd:string"/>
<part name="registrationCode" type="xsd:string"/>
</message>
<message name="editObject">
<part name="templateObject" type="tns:SoftLayer_User_Customer_OpenIdConnect"/>
</message>
<message name="editObjectResponse">
<part name="editObjectReturn" type="xsd:boolean"/>
</message>
<message name="editObjects">
<part name="templateObjects" type="tns:SoftLayer_User_Customer_OpenIdConnectArray"/>
</message>
<message name="editObjectsResponse">
<part name="editObjectsReturn" type="xsd:boolean"/>
</message>
<message name="findUserPreference">
<part name="profileName" type="xsd:string"/>
<part name="containerKeyname" type="xsd:string"/>
<part name="preferenceKeyname" type="xsd:string"/>
</message>
<message name="findUserPreferenceResponse">
<part name="findUserPreferenceReturn" type="tns:SoftLayer_Layout_ProfileArray"/>
</message>
<message name="forceChangePaasOwner">
<part name="paasAccountId" type="xsd:string"/>
<part name="newOwnerIamId" type="xsd:string"/>
</message>
<message name="getAccount"/>
<message name="getAccountResponse">
<part name="getAccountReturn" type="tns:SoftLayer_Account"/>
</message>
<message name="getActions"/>
<message name="getActionsResponse">
<part name="getActionsReturn" type="tns:SoftLayer_User_Permission_ActionArray"/>
</message>
<message name="getActiveExternalAuthenticationVendors"/>
<message name="getActiveExternalAuthenticationVendorsResponse">
<part name="getActiveExternalAuthenticationVendorsReturn" type="tns:SoftLayer_Container_User_Customer_External_Binding_VendorArray"/>
</message>
<message name="getAdditionalEmails"/>
<message name="getAdditionalEmailsResponse">
<part name="getAdditionalEmailsReturn" type="tns:SoftLayer_User_Customer_AdditionalEmailArray"/>
</message>
<message name="getAgentImpersonationToken"/>
<message name="getAgentImpersonationTokenResponse">
<part name="getAgentImpersonationTokenReturn" type="xsd:string"/>
</message>
<message name="getAllowedDedicatedHostIds"/>
<message name="getAllowedDedicatedHostIdsResponse">
<part name="getAllowedDedicatedHostIdsReturn" type="tns:ArrayOfint"/>
</message>
<message name="getAllowedHardwareIds"/>
<message name="getAllowedHardwareIdsResponse">
<part name="getAllowedHardwareIdsReturn" type="tns:ArrayOfint"/>
</message>
<message name="getAllowedVirtualGuestIds"/>
<message name="getAllowedVirtualGuestIdsResponse">
<part name="getAllowedVirtualGuestIdsReturn" type="tns:ArrayOfint"/>
</message>
<message name="getApiAuthenticationKeys"/>
<message name="getApiAuthenticationKeysResponse">
<part name="getApiAuthenticationKeysReturn" type="tns:SoftLayer_User_Customer_ApiAuthenticationArray"/>
</message>
<message name="getAuthenticationToken">
<part name="token" type="tns:SoftLayer_Container_User_Authentication_Token"/>
</message>
<message name="getAuthenticationTokenResponse">
<part name="getAuthenticationTokenReturn" type="tns:SoftLayer_Container_User_Authentication_Token"/>
</message>
<message name="getChildUsers"/>
<message name="getChildUsersResponse">
<part name="getChildUsersReturn" type="tns:SoftLayer_User_CustomerArray"/>
</message>
<message name="getClosedTickets"/>
<message name="getClosedTicketsResponse">
<part name="getClosedTicketsReturn" type="tns:SoftLayer_TicketArray"/>
</message>
<message name="getDedicatedHosts"/>
<message name="getDedicatedHostsResponse">
<part name="getDedicatedHostsReturn" type="tns:SoftLayer_Virtual_DedicatedHostArray"/>
</message>
<message name="getDefaultAccount">
<part name="providerType" type="xsd:string"/>
</message>
<message name="getDefaultAccountResponse">
<part name="getDefaultAccountReturn" type="tns:SoftLayer_Account"/>
</message>
<message name="getExternalBindings"/>
<message name="getExternalBindingsResponse">
<part name="getExternalBindingsReturn" type="tns:SoftLayer_User_External_BindingArray"/>
</message>
<message name="getHardware"/>
<message name="getHardwareResponse">
<part name="getHardwareReturn" type="tns:SoftLayer_HardwareArray"/>
</message>
<message name="getHardwareCount"/>
<message name="getHardwareCountResponse">
<part name="getHardwareCountReturn" type="xsd:int"/>
</message>
<message name="getHardwareNotifications"/>
<message name="getHardwareNotificationsResponse">
<part name="getHardwareNotificationsReturn" type="tns:SoftLayer_User_Customer_Notification_HardwareArray"/>
</message>
<message name="getHasAcknowledgedSupportPolicyFlag"/>
<message name="getHasAcknowledgedSupportPolicyFlagResponse">
<part name="getHasAcknowledgedSupportPolicyFlagReturn" type="xsd:boolean"/>
</message>
<message name="getHasFullDedicatedHostAccessFlag"/>
<message name="getHasFullDedicatedHostAccessFlagResponse">
<part name="getHasFullDedicatedHostAccessFlagReturn" type="xsd:boolean"/>
</message>
<message name="getHasFullHardwareAccessFlag"/>
<message name="getHasFullHardwareAccessFlagResponse">
<part name="getHasFullHardwareAccessFlagReturn" type="xsd:boolean"/>
</message>
<message name="getHasFullVirtualGuestAccessFlag"/>
<message name="getHasFullVirtualGuestAccessFlagResponse">
<part name="getHasFullVirtualGuestAccessFlagReturn" type="xsd:boolean"/>
</message>
<message name="getIbmIdLink"/>
<message name="getIbmIdLinkResponse">
<part name="getIbmIdLinkReturn" type="tns:SoftLayer_User_Customer_Link"/>
</message>
<message name="getImpersonationToken"/>
<message name="getImpersonationTokenResponse">
<part name="getImpersonationTokenReturn" type="xsd:string"/>
</message>
<message name="getLayoutProfiles"/>
<message name="getLayoutProfilesResponse">
<part name="getLayoutProfilesReturn" type="tns:SoftLayer_Layout_ProfileArray"/>
</message>
<message name="getLocale"/>
<message name="getLocaleResponse">
<part name="getLocaleReturn" type="tns:SoftLayer_Locale"/>
</message>
<message name="getLoginAccountInfoOpenIdConnect">
<part name="providerType" type="xsd:string"/>
<part name="accessToken" type="xsd:string"/>
</message>
<message name="getLoginAccountInfoOpenIdConnectResponse">
<part name="getLoginAccountInfoOpenIdConnectReturn" type="tns:SoftLayer_Container_User_Customer_OpenIdConnect_LoginAccountInfo"/>
</message>
<message name="getLoginAttempts"/>
<message name="getLoginAttemptsResponse">
<part name="getLoginAttemptsReturn" type="tns:SoftLayer_User_Customer_Access_AuthenticationArray"/>
</message>
<message name="getLoginToken">
<part name="request" type="tns:SoftLayer_Container_Authentication_Request_Contract"/>
</message>
<message name="getLoginTokenResponse">
<part name="getLoginTokenReturn" type="tns:SoftLayer_Container_Authentication_Response_Common"/>
</message>
<message name="getMappedAccounts">
<part name="providerType" type="xsd:string"/>
</message>
<message name="getMappedAccountsResponse">
<part name="getMappedAccountsReturn" type="tns:SoftLayer_AccountArray"/>
</message>
<message name="getMappedAccountsForCloudIamIdentity">
<part name="iamToken" type="xsd:string"/>
</message>
<message name="getMappedAccountsForCloudIamIdentityResponse">
<part name="getMappedAccountsForCloudIamIdentityReturn" type="tns:SoftLayer_AccountArray"/>
</message>
<message name="getNotificationSubscribers"/>
<message name="getNotificationSubscribersResponse">
<part name="getNotificationSubscribersReturn" type="tns:SoftLayer_Notification_SubscriberArray"/>
</message>
<message name="getObject"/>
<message name="getObjectResponse">
<part name="getObjectReturn" type="tns:SoftLayer_User_Customer_OpenIdConnect"/>
</message>
<message name="getOpenIdConnectMigrationState"/>
<message name="getOpenIdConnectMigrationStateResponse">
<part name="getOpenIdConnectMigrationStateReturn" type="tns:SoftLayer_Container_User_Customer_OpenIdConnect_MigrationState"/>
</message>
<message name="getOpenIdRegistrationInfoFromCode">
<part name="providerType" type="xsd:string"/>
<part name="registrationCode" type="xsd:string"/>
</message>
<message name="getOpenIdRegistrationInfoFromCodeResponse">
<part name="getOpenIdRegistrationInfoFromCodeReturn" type="tns:SoftLayer_Account_Authentication_OpenIdConnect_RegistrationInformation"/>
</message>
<message name="getOpenTickets"/>
<message name="getOpenTicketsResponse">
<part name="getOpenTicketsReturn" type="tns:SoftLayer_TicketArray"/>
</message>
<message name="getOverrides"/>
<message name="getOverridesResponse">
<part name="getOverridesReturn" type="tns:SoftLayer_Network_Service_Vpn_OverridesArray"/>
</message>
<message name="getParent"/>
<message name="getParentResponse">
<part name="getParentReturn" type="tns:SoftLayer_User_Customer"/>
</message>
<message name="getPasswordRequirements">
<part name="isVpn" type="xsd:boolean"/>
</message>
<message name="getPasswordRequirementsResponse">
<part name="getPasswordRequirementsReturn" type="tns:SoftLayer_Container_User_Customer_PasswordSet"/>
</message>
<message name="getPermissions"/>
<message name="getPermissionsResponse">
<part name="getPermissionsReturn" type="tns:SoftLayer_User_Customer_CustomerPermission_PermissionArray"/>
</message>
<message name="getPortalLoginToken">
<part name="username" type="xsd:string"/>
<part name="password" type="xsd:string"/>
<part name="securityQuestionId" type="xsd:int"/>
<part name="securityQuestionAnswer" type="xsd:string"/>
</message>
<message name="getPortalLoginTokenResponse">
<part name="getPortalLoginTokenReturn" type="tns:SoftLayer_Container_User_Customer_Portal_Token"/>
</message>
<message name="getPortalLoginTokenOpenIdConnect">
<part name="providerType" type="xsd:string"/>
<part name="accessToken" type="xsd:string"/>
<part name="accountId" type="xsd:int"/>
<part name="securityQuestionId" type="xsd:int"/>
<part name="securityQuestionAnswer" type="xsd:string"/>
</message>
<message name="getPortalLoginTokenOpenIdConnectResponse">
<part name="getPortalLoginTokenOpenIdConnectReturn" type="tns:SoftLayer_Container_User_Customer_Portal_Token"/>
</message>
<message name="getPreference">
<part name="preferenceTypeKeyName" type="xsd:string"/>
</message>
<message name="getPreferenceResponse">
<part name="getPreferenceReturn" type="tns:SoftLayer_User_Preference"/>
</message>
<message name="getPreferenceTypes"/>
<message name="getPreferenceTypesResponse">
<part name="getPreferenceTypesReturn" type="tns:SoftLayer_User_Preference_TypeArray"/>
</message>
<message name="getPreferences"/>
<message name="getPreferencesResponse">
<part name="getPreferencesReturn" type="tns:SoftLayer_User_PreferenceArray"/>
</message>
<message name="getRequirementsForPasswordSet">
<part name="passwordSet" type="tns:SoftLayer_Container_User_Customer_PasswordSet"/>
</message>
<message name="getRequirementsForPasswordSetResponse">
<part name="getRequirementsForPasswordSetReturn" type="tns:SoftLayer_Container_User_Customer_PasswordSet"/>
</message>
<message name="getRoles"/>
<message name="getRolesResponse">
<part name="getRolesReturn" type="tns:SoftLayer_User_Permission_RoleArray"/>
</message>
<message name="getSecurityAnswers"/>
<message name="getSecurityAnswersResponse">
<part name="getSecurityAnswersReturn" type="tns:SoftLayer_User_Customer_Security_AnswerArray"/>
</message>
<message name="getSubscribers"/>
<message name="getSubscribersResponse">
<part name="getSubscribersReturn" type="tns:SoftLayer_Notification_User_SubscriberArray"/>
</message>
<message name="getSuccessfulLogins"/>
<message name="getSuccessfulLoginsResponse">
<part name="getSuccessfulLoginsReturn" type="tns:SoftLayer_User_Customer_Access_AuthenticationArray"/>
</message>
<message name="getSupportPolicyAcknowledgementRequiredFlag"/>
<message name="getSupportPolicyAcknowledgementRequiredFlagResponse">
<part name="getSupportPolicyAcknowledgementRequiredFlagReturn" type="xsd:int"/>
</message>
<message name="getSupportPolicyDocument"/>
<message name="getSupportPolicyDocumentResponse">
<part name="getSupportPolicyDocumentReturn" type="xsd:base64Binary"/>
</message>
<message name="getSupportPolicyName"/>
<message name="getSupportPolicyNameResponse">
<part name="getSupportPolicyNameReturn" type="xsd:string"/>
</message>
<message name="getSupportedLocales"/>
<message name="getSupportedLocalesResponse">
<part name="getSupportedLocalesReturn" type="tns:SoftLayer_LocaleArray"/>
</message>
<message name="getSurveyRequiredFlag"/>
<message name="getSurveyRequiredFlagResponse">
<part name="getSurveyRequiredFlagReturn" type="xsd:boolean"/>
</message>
<message name="getSurveys"/>
<message name="getSurveysResponse">
<part name="getSurveysReturn" type="tns:SoftLayer_SurveyArray"/>
</message>
<message name="getTickets"/>
<message name="getTicketsResponse">
<part name="getTicketsReturn" type="tns:SoftLayer_TicketArray"/>
</message>
<message name="getTimezone"/>
<message name="getTimezoneResponse">
<part name="getTimezoneReturn" type="tns:SoftLayer_Locale_Timezone"/>
</message>
<message name="getUnsuccessfulLogins"/>
<message name="getUnsuccessfulLoginsResponse">
<part name="getUnsuccessfulLoginsReturn" type="tns:SoftLayer_User_Customer_Access_AuthenticationArray"/>
</message>
<message name="getUserForUnifiedInvitation">
<part name="openIdConnectUserId" type="xsd:string"/>
<part name="uniqueIdentifier" type="xsd:string"/>
<part name="searchInvitationsNotLinksFlag" type="xsd:string"/>
<part name="accountId" type="xsd:string"/>
</message>
<message name="getUserForUnifiedInvitationResponse">
<part name="getUserForUnifiedInvitationReturn" type="tns:SoftLayer_User_Customer_OpenIdConnect"/>
</message>
<message name="getUserIdForPasswordSet">
<part name="key" type="xsd:string"/>
</message>
<message name="getUserIdForPasswordSetResponse">
<part name="getUserIdForPasswordSetReturn" type="xsd:int"/>
</message>
<message name="getUserLinks"/>
<message name="getUserLinksResponse">
<part name="getUserLinksReturn" type="tns:SoftLayer_User_Customer_LinkArray"/>
</message>
<message name="getUserPreferences">
<part name="profileName" type="xsd:string"/>
<part name="containerKeyname" type="xsd:string"/>
</message>
<message name="getUserPreferencesResponse">
<part name="getUserPreferencesReturn" type="tns:SoftLayer_Layout_ProfileArray"/>
</message>
<message name="getUserStatus"/>
<message name="getUserStatusResponse">
<part name="getUserStatusReturn" type="tns:SoftLayer_User_Customer_Status"/>
</message>
<message name="getUserTargetStatuses"/>
<message name="getUserTargetStatusesResponse">
<part name="getUserTargetStatusesReturn" type="tns:SoftLayer_User_Customer_StatusArray"/>
</message>
<message name="getVirtualGuestCount"/>
<message name="getVirtualGuestCountResponse">
<part name="getVirtualGuestCountReturn" type="xsd:int"/>
</message>
<message name="getVirtualGuests"/>
<message name="getVirtualGuestsResponse">
<part name="getVirtualGuestsReturn" type="tns:SoftLayer_Virtual_GuestArray"/>
</message>
<message name="inTerminalStatus"/>
<message name="inTerminalStatusResponse">
<part name="inTerminalStatusReturn" type="xsd:boolean"/>
</message>
<message name="initiateExternalAuthentication">
<part name="authenticationContainer" type="tns:SoftLayer_Container_User_Customer_External_Binding"/>
</message>
<message name="initiateExternalAuthenticationResponse">
<part name="initiateExternalAuthenticationReturn" type="xsd:string"/>
</message>
<message name="initiatePortalPasswordChange">
<part name="username" type="xsd:string"/>
</message>
<message name="initiatePortalPasswordChangeResponse">
<part name="initiatePortalPasswordChangeReturn" type="xsd:boolean"/>
</message>
<message name="initiatePortalPasswordChangeByBrandAgent">
<part name="username" type="xsd:string"/>
</message>
<message name="initiatePortalPasswordChangeByBrandAgentResponse">
<part name="initiatePortalPasswordChangeByBrandAgentReturn" type="xsd:boolean"/>
</message>
<message name="insertGarbageIntoValidationKeyCacheWrapper">
<part name="testNumber" type="xsd:int"/>
</message>
<message name="isMasterUser"/>
<message name="isMasterUserResponse">
<part name="isMasterUserReturn" type="xsd:boolean"/>
</message>
<message name="isValidPortalPassword">
<part name="password" type="xsd:string"/>
</message>
<message name="isValidPortalPasswordResponse">
<part name="isValidPortalPasswordReturn" type="xsd:boolean"/>
</message>
<message name="performExternalAuthentication">
<part name="authenticationContainer" type="tns:SoftLayer_Container_User_Customer_External_Binding"/>
</message>
<message name="performExternalAuthenticationResponse">
<part name="performExternalAuthenticationReturn" type="tns:SoftLayer_Container_User_Customer_Portal_Token"/>
</message>
<message name="processPasswordSetRequest">
<part name="passwordSet" type="tns:SoftLayer_Container_User_Customer_PasswordSet"/>
<part name="authenticationContainer" type="tns:SoftLayer_Container_User_Customer_External_Binding"/>
</message>
<message name="processPasswordSetRequestResponse">
<part name="processPasswordSetRequestReturn" type="xsd:boolean"/>
</message>
<message name="removeAllDedicatedHostAccessForThisUser"/>
<message name="removeAllDedicatedHostAccessForThisUserResponse">
<part name="removeAllDedicatedHostAccessForThisUserReturn" type="xsd:boolean"/>
</message>
<message name="removeAllHardwareAccessForThisUser"/>
<message name="removeAllHardwareAccessForThisUserResponse">
<part name="removeAllHardwareAccessForThisUserReturn" type="xsd:boolean"/>
</message>
<message name="removeAllVirtualAccessForThisUser"/>
<message name="removeAllVirtualAccessForThisUserResponse">
<part name="removeAllVirtualAccessForThisUserReturn" type="xsd:boolean"/>
</message>
<message name="removeApiAuthenticationKey">
<part name="keyId" type="xsd:int"/>
</message>
<message name="removeApiAuthenticationKeyResponse">
<part name="removeApiAuthenticationKeyReturn" type="xsd:boolean"/>
</message>
<message name="removeBulkDedicatedHostAccess">
<part name="dedicatedHostIds" type="tns:ArrayOfint"/>
</message>
<message name="removeBulkDedicatedHostAccessResponse">
<part name="removeBulkDedicatedHostAccessReturn" type="xsd:boolean"/>
</message>
<message name="removeBulkHardwareAccess">
<part name="hardwareIds" type="tns:ArrayOfint"/>
</message>
<message name="removeBulkHardwareAccessResponse">
<part name="removeBulkHardwareAccessReturn" type="xsd:boolean"/>
</message>
<message name="removeBulkPortalPermission">
<part name="permissions" type="tns:SoftLayer_User_Customer_CustomerPermission_PermissionArray"/>
<part name="cascadePermissionsFlag" type="xsd:boolean"/>
</message>
<message name="removeBulkPortalPermissionResponse">
<part name="removeBulkPortalPermissionReturn" type="xsd:boolean"/>
</message>
<message name="removeBulkRoles">
<part name="roles" type="tns:SoftLayer_User_Permission_RoleArray"/>
</message>
<message name="removeBulkVirtualGuestAccess">
<part name="virtualGuestIds" type="tns:ArrayOfint"/>
</message>
<message name="removeBulkVirtualGuestAccessResponse">
<part name="removeBulkVirtualGuestAccessReturn" type="xsd:boolean"/>
</message>
<message name="removeDedicatedHostAccess">
<part name="dedicatedHostId" type="xsd:int"/>
</message>
<message name="removeDedicatedHostAccessResponse">
<part name="removeDedicatedHostAccessReturn" type="xsd:boolean"/>
</message>
<message name="removeExternalBinding">
<part name="externalBinding" type="tns:SoftLayer_User_External_Binding"/>
</message>
<message name="removeExternalBindingResponse">
<part name="removeExternalBindingReturn" type="xsd:boolean"/>
</message>
<message name="removeHardwareAccess">
<part name="hardwareId" type="xsd:int"/>
</message>
<message name="removeHardwareAccessResponse">
<part name="removeHardwareAccessReturn" type="xsd:boolean"/>
</message>
<message name="removePortalPermission">
<part name="permission" type="tns:SoftLayer_User_Customer_CustomerPermission_Permission"/>
<part name="cascadePermissionsFlag" type="xsd:boolean"/>
</message>
<message name="removePortalPermissionResponse">
<part name="removePortalPermissionReturn" type="xsd:boolean"/>
</message>
<message name="removeRole">
<part name="role" type="tns:SoftLayer_User_Permission_Role"/>
</message>
<message name="removeSecurityAnswers"/>
<message name="removeSecurityAnswersResponse">
<part name="removeSecurityAnswersReturn" type="xsd:boolean"/>
</message>
<message name="removeVirtualGuestAccess">
<part name="virtualGuestId" type="xsd:int"/>
</message>
<message name="removeVirtualGuestAccessResponse">
<part name="removeVirtualGuestAccessReturn" type="xsd:boolean"/>
</message>
<message name="resetOpenIdConnectLink">
<part name="providerType" type="xsd:string"/>
<part name="newIamId" type="xsd:string"/>
<part name="removeSecuritySettings" type="xsd:boolean"/>
</message>
<message name="resetOpenIdConnectLinkUnifiedUserManagementMode">
<part name="providerType" type="xsd:string"/>
<part name="newIamId" type="xsd:string"/>
<part name="removeSecuritySettings" type="xsd:boolean"/>
</message>
<message name="samlAuthenticate">
<part name="accountId" type="xsd:string"/>
<part name="samlResponse" type="xsd:string"/>
</message>
<message name="samlAuthenticateResponse">
<part name="samlAuthenticateReturn" type="tns:SoftLayer_Container_User_Customer_Portal_Token"/>
</message>
<message name="samlBeginAuthentication">
<part name="accountId" type="xsd:int"/>
</message>
<message name="samlBeginAuthenticationResponse">
<part name="samlBeginAuthenticationReturn" type="xsd:string"/>
</message>
<message name="samlBeginLogout"/>
<message name="samlBeginLogoutResponse">
<part name="samlBeginLogoutReturn" type="xsd:string"/>
</message>
<message name="samlLogout">
<part name="samlResponse" type="xsd:string"/>
</message>
<message name="selfPasswordChange">
<part name="currentPassword" type="xsd:string"/>
<part name="newPassword" type="xsd:string"/>
</message>
<message name="setDefaultAccount">
<part name="providerType" type="xsd:string"/>
<part name="accountId" type="xsd:int"/>
</message>
<message name="setDefaultAccountResponse">
<part name="setDefaultAccountReturn" type="tns:SoftLayer_Account"/>
</message>
<message name="silentlyMigrateUserOpenIdConnect">
<part name="providerType" type="xsd:string"/>
</message>
<message name="silentlyMigrateUserOpenIdConnectResponse">
<part name="silentlyMigrateUserOpenIdConnectReturn" type="xsd:boolean"/>
</message>
<message name="turnOffMasterUserPermissionCheckMode"/>
<message name="turnOnMasterUserPermissionCheckMode"/>
<message name="updateNotificationSubscriber">
<part name="notificationKeyName" type="xsd:string"/>
<part name="active" type="xsd:int"/>
</message>
<message name="updateNotificationSubscriberResponse">
<part name="updateNotificationSubscriberReturn" type="xsd:boolean"/>
</message>
<message name="updateSecurityAnswers">
<part name="questions" type="tns:SoftLayer_User_Security_QuestionArray"/>
<part name="answers" type="tns:ArrayOfstring"/>
</message>
<message name="updateSecurityAnswersResponse">
<part name="updateSecurityAnswersReturn" type="xsd:boolean"/>
</message>
<message name="updateSubscriberDeliveryMethod">
<part name="notificationKeyName" type="xsd:string"/>
<part name="deliveryMethodKeyNames" type="tns:ArrayOfstring"/>
<part name="active" type="xsd:int"/>
</message>
<message name="updateSubscriberDeliveryMethodResponse">
<part name="updateSubscriberDeliveryMethodReturn" type="xsd:boolean"/>
</message>
<message name="updateVpnPassword">
<part name="password" type="xsd:string"/>
</message>
<message name="updateVpnPasswordResponse">
<part name="updateVpnPasswordReturn" type="xsd:boolean"/>
</message>
<message name="updateVpnUser"/>
<message name="updateVpnUserResponse">
<part name="updateVpnUserReturn" type="xsd:boolean"/>
</message>
<message name="validateAuthenticationToken">
<part name="authenticationToken" type="tns:SoftLayer_Container_User_Authentication_Token"/>
</message>
<message name="validateAuthenticationTokenResponse">
<part name="validateAuthenticationTokenReturn" type="tns:SoftLayer_Container_User_Customer_Portal_Token"/>
</message>
<message name="authenticateHeader">
<part name="authenticate" type="tns:authenticate"/>
</message>
<message name="resultLimitHeader">
<part name="resultLimit" type="tns:resultLimit"/>
</message>
<message name="totalItemsHeader">
<part name="totalItems" type="tns:totalItems"/>
</message>
<message name="SoftLayer_User_Customer_OpenIdConnectObjectMaskHeader">
<part name="SoftLayer_User_Customer_OpenIdConnectObjectMask" type="tns:SoftLayer_User_Customer_OpenIdConnectObjectMask"/>
</message>
<message name="SoftLayer_User_Customer_OpenIdConnectObjectFilterHeader">
<part name="SoftLayer_User_Customer_OpenIdConnectObjectFilter" type="tns:SoftLayer_User_Customer_OpenIdConnectObjectFilter"/>
</message>
<message name="SoftLayer_ObjectMaskHeader">
<part name="SoftLayer_ObjectMask" type="tns:SoftLayer_ObjectMask"/>
</message>
<portType name="SoftLayer_User_Customer_OpenIdConnectPortType">
<documentation></documentation>
<operation name="acknowledgeSupportPolicy">
<documentation></documentation>
<input message="tns:acknowledgeSupportPolicy"/>
</operation>
<operation name="activateOpenIdConnectUser">
<documentation>Completes invitation process for an OpenIdConnect user created by Bluemix Unified User Console. </documentation>
<input message="tns:activateOpenIdConnectUser"/>
</operation>
<operation name="addApiAuthenticationKey">
<documentation>Create a user&#039;s API authentication key, allowing that user access to query the SoftLayer API. addApiAuthenticationKey() returns the user&#039;s new API key. Each portal user is allowed only one API key. </documentation>
<input message="tns:addApiAuthenticationKey"/>
<output message="tns:addApiAuthenticationKeyResponse"/>
</operation>
<operation name="addBulkDedicatedHostAccess">
<documentation>Grants the user access to one or more dedicated host devices. The user will only be allowed to see and access devices in both the portal and the API to which they have been granted access. If the user&#039;s account has devices to which the user has not been granted access, then &quot;not found&quot; exceptions are thrown if the user attempts to access any of these devices.
Users can assign device access to their child users, but not to themselves. An account&#039;s master has access to all devices on their customer account and can set dedicated host access for any of the other users on their account. </documentation>
<input message="tns:addBulkDedicatedHostAccess"/>
<output message="tns:addBulkDedicatedHostAccessResponse"/>
</operation>
<operation name="addBulkHardwareAccess">
<documentation>Add multiple hardware to a portal user&#039;s hardware access list. A user&#039;s hardware access list controls which of an account&#039;s hardware objects a user has access to in the SoftLayer customer portal and API. Hardware does not exist in the SoftLayer portal and returns &quot;not found&quot; exceptions in the API if the user doesn&#039;t have access to it. addBulkHardwareAccess() does not attempt to add hardware access if the given user already has access to that hardware object.
Users can assign hardware access to their child users, but not to themselves. An account&#039;s master has access to all hardware on their customer account and can set hardware access for any of the other users on their account. </documentation>
<input message="tns:addBulkHardwareAccess"/>
<output message="tns:addBulkHardwareAccessResponse"/>
</operation>
<operation name="addBulkPortalPermission">
<documentation>Add multiple permissions to a portal user&#039;s permission set. [[SoftLayer_User_Customer_CustomerPermission_Permission]] control which features in the SoftLayer customer portal and API a user may use. addBulkPortalPermission() does not attempt to add permissions already assigned to the user.
Users can assign permissions to their child users, but not to themselves. An account&#039;s master has all portal permissions and can set permissions for any of the other users on their account.
Use the [[SoftLayer_User_Customer_CustomerPermission_Permission::getAllObjects]] method to retrieve a list of all permissions available in the SoftLayer customer portal and API. Permissions are removed based on the keyName property of the permission objects within the permissions parameter. </documentation>
<input message="tns:addBulkPortalPermission"/>
<output message="tns:addBulkPortalPermissionResponse"/>
</operation>
<operation name="addBulkRoles">
<documentation></documentation>
<input message="tns:addBulkRoles"/>
</operation>
<operation name="addBulkVirtualGuestAccess">
<documentation>Add multiple CloudLayer Computing Instances to a portal user&#039;s access list. A user&#039;s CloudLayer Computing Instance access list controls which of an account&#039;s CloudLayer Computing Instance objects a user has access to in the SoftLayer customer portal and API. CloudLayer Computing Instances do not exist in the SoftLayer portal and returns &quot;not found&quot; exceptions in the API if the user doesn&#039;t have access to it. addBulkVirtualGuestAccess() does not attempt to add CloudLayer Computing Instance access if the given user already has access to that CloudLayer Computing Instance object.
Users can assign CloudLayer Computing Instance access to their child users, but not to themselves. An account&#039;s master has access to all CloudLayer Computing Instances on their customer account and can set CloudLayer Computing Instance access for any of the other users on their account. </documentation>
<input message="tns:addBulkVirtualGuestAccess"/>
<output message="tns:addBulkVirtualGuestAccessResponse"/>
</operation>
<operation name="addDedicatedHostAccess">
<documentation>Grants the user access to a single dedicated host device. The user will only be allowed to see and access devices in both the portal and the API to which they have been granted access. If the user&#039;s account has devices to which the user has not been granted access, then &quot;not found&quot; exceptions are thrown if the user attempts to access any of these devices.
Users can assign device access to their child users, but not to themselves. An account&#039;s master has access to all devices on their customer account and can set dedicated host access for any of the other users on their account.
Only the USER_MANAGE permission is required to execute this. </documentation>
<input message="tns:addDedicatedHostAccess"/>
<output message="tns:addDedicatedHostAccessResponse"/>
</operation>
<operation name="addExternalBinding">
<documentation></documentation>
<input message="tns:addExternalBinding"/>
<output message="tns:addExternalBindingResponse"/>
</operation>
<operation name="addHardwareAccess">
<documentation>Add hardware to a portal user&#039;s hardware access list. A user&#039;s hardware access list controls which of an account&#039;s hardware objects a user has access to in the SoftLayer customer portal and API. Hardware does not exist in the SoftLayer portal and returns &quot;not found&quot; exceptions in the API if the user doesn&#039;t have access to it. If a user already has access to the hardware you&#039;re attempting to add then addHardwareAccess() returns true.
Users can assign hardware access to their child users, but not to themselves. An account&#039;s master has access to all hardware on their customer account and can set hardware access for any of the other users on their account.
Only the USER_MANAGE permission is required to execute this. </documentation>
<input message="tns:addHardwareAccess"/>
<output message="tns:addHardwareAccessResponse"/>
</operation>
<operation name="addNotificationSubscriber">
<documentation>Create a notification subscription record for the user. If a subscription record exists for the notification, the record will be set to active, if currently inactive. </documentation>
<input message="tns:addNotificationSubscriber"/>
<output message="tns:addNotificationSubscriberResponse"/>
</operation>
<operation name="addPortalPermission">
<documentation>Add a permission to a portal user&#039;s permission set. [[SoftLayer_User_Customer_CustomerPermission_Permission]] control which features in the SoftLayer customer portal and API a user may use. If the user already has the permission you&#039;re attempting to add then addPortalPermission() returns true.
Users can assign permissions to their child users, but not to themselves. An account&#039;s master has all portal permissions and can set permissions for any of the other users on their account.
Use the [[SoftLayer_User_Customer_CustomerPermission_Permission::getAllObjects]] method to retrieve a list of all permissions available in the SoftLayer customer portal and API. Permissions are added based on the keyName property of the permission parameter. </documentation>
<input message="tns:addPortalPermission"/>
<output message="tns:addPortalPermissionResponse"/>
</operation>
<operation name="addRole">
<documentation></documentation>
<input message="tns:addRole"/>
</operation>
<operation name="addVirtualGuestAccess">
<documentation>Add a CloudLayer Computing Instance to a portal user&#039;s access list. A user&#039;s CloudLayer Computing Instance access list controls which of an account&#039;s CloudLayer Computing Instance objects a user has access to in the SoftLayer customer portal and API. CloudLayer Computing Instances do not exist in the SoftLayer portal and returns &quot;not found&quot; exceptions in the API if the user doesn&#039;t have access to it. If a user already has access to the CloudLayer Computing Instance you&#039;re attempting to add then addVirtualGuestAccess() returns true.
Users can assign CloudLayer Computing Instance access to their child users, but not to themselves. An account&#039;s master has access to all CloudLayer Computing Instances on their customer account and can set CloudLayer Computing Instance access for any of the other users on their account.
Only the USER_MANAGE permission is required to execute this. </documentation>
<input message="tns:addVirtualGuestAccess"/>
<output message="tns:addVirtualGuestAccessResponse"/>
</operation>
<operation name="assignNewParentId">
<documentation>This method can be used in place of [[SoftLayer_User_Customer::editObject]] to change the parent user of this user.
The new parent must be a user on the same account, and must not be a child of this user. A user is not allowed to change their own parent.
If the cascadeFlag is set to false, then an exception will be thrown if the new parent does not have all of the permissions that this user possesses. If the cascadeFlag is set to true, then permissions will be removed from this user and the descendants of this user as necessary so that no children of the parent will have permissions that the parent does not possess. However, setting the cascadeFlag to true will not remove the access all device permissions from this user. The customer portal will need to be used to remove these permissions. </documentation>
<input message="tns:assignNewParentId"/>
<output message="tns:assignNewParentIdResponse"/>
</operation>
<operation name="bulkDelete">
<documentation></documentation>
<input message="tns:bulkDelete"/>
<output message="tns:bulkDeleteResponse"/>
</operation>
<operation name="changePreference">
<documentation>Select a type of preference you would like to modify using [[SoftLayer_User_Customer::getPreferenceTypes|getPreferenceTypes]] and invoke this method using that preference type key name. </documentation>
<input message="tns:changePreference"/>
<output message="tns:changePreferenceResponse"/>
</operation>
<operation name="checkExternalAuthenticationStatus">
<documentation>This service checks the result of a previously requested external authentication. [[SoftLayer_Container_User_Customer_External_Binding_Phone|Phone external binding]] container can be used for this service. Make sure to set the [[SoftLayer_Container_User_Customer_External_Binding_Phone::authenticationToken|authenticationToken]] that is generated by [[SoftLayer_User_Customer|initiateExternalAuthentication]] service. </documentation>
<input message="tns:checkExternalAuthenticationStatus"/>
<output message="tns:checkExternalAuthenticationStatusResponse"/>
</operation>
<operation name="checkPhoneFactorAuthenticationForPasswordSet">
<documentation>Add a description here
</documentation>
<input message="tns:checkPhoneFactorAuthenticationForPasswordSet"/>
<output message="tns:checkPhoneFactorAuthenticationForPasswordSetResponse"/>
</operation>
<operation name="completeInvitationAfterLogin">
<documentation></documentation>
<input message="tns:completeInvitationAfterLogin"/>
</operation>
<operation name="createNewUserInMultipleAccounts">
<documentation></documentation>
<input message="tns:createNewUserInMultipleAccounts"/>
<output message="tns:createNewUserInMultipleAccountsResponse"/>
</operation>
<operation name="createNotificationSubscriber">
<documentation>Create a new subscriber for a given resource. </documentation>
<input message="tns:createNotificationSubscriber"/>
<output message="tns:createNotificationSubscriberResponse"/>
</operation>
<operation name="createObject">
<documentation>Create a new user in the SoftLayer customer portal. It is not possible to set up SLL enable flags during object creation. These flags are ignored during object creation. You will need to make a subsequent call to edit object in order to enable VPN access.
An account&#039;s master user and sub-users who have the User Manage permission can add new users.
Users are created with a default permission set. After adding a user it may be helpful to set their permissions and device access.
secondaryPasswordTimeoutDays will be set to the system configured default value if the attribute is not provided or the attribute is not a valid value.
Note, neither password nor vpnPassword parameters are required.
Password When a new user is created, an email will be sent to the new user&#039;s email address with a link to a url that will allow the new user to create or change their password for the SoftLayer customer portal.
If the password parameter is provided and is not null, then that value will be validated. If it is a valid password, then the user will be created with this password. This user will still receive a portal password email. It can be used within 24 hours to change their password, or it can be allowed to expire, and the password provided during user creation will remain as the user&#039;s password.
If the password parameter is not provided or the value is null, the user must set their portal password using the link sent in email within 24 hours. If the user fails to set their password within 24 hours, then a non-master user can use the &quot;Reset Password&quot; link on the login page of the portal to request a new email. A master user can use the link to retrieve a phone number to call to assist in resetting their password.
The password parameter is ignored for VPN_ONLY users or for IBMid authenticated users.
vpnPassword If the vpnPassword is provided, then the user&#039;s vpnPassword will be set to the provided password. When creating a vpn only user, the vpnPassword MUST be supplied. If the vpnPassword is not provided, then the user will need to use the portal to edit their profile and set the vpnPassword.
IBMid considerations When a SoftLayer account is linked to a Platform Services (PaaS, formerly Bluemix) account, AND the trait on the SoftLayer Account indicating IBMid authentication is set, then SoftLayer will delegate the creation of an ACTIVE user to PaaS. This means that even though the request to create a new user in such an account may start at the IMS API, via this delegation we effectively turn it into a request that is driven by PaaS. In particular this means that any &quot;invitation email&quot; that comes to the user, will come from PaaS, not from IMS via IBMid.
Users created in states other than ACTIVE (for example, a VPN_ONLY user) will be created directly in IMS without delegation (but note that no invitation is sent for a user created in any state other than ACTIVE). </documentation>
<input message="tns:createObject"/>
<output message="tns:createObjectResponse"/>
</operation>
<operation name="createOpenIdConnectUserAndCompleteInvitation">
<documentation></documentation>
<input message="tns:createOpenIdConnectUserAndCompleteInvitation"/>
</operation>
<operation name="createSubscriberDeliveryMethods">
<documentation>Create delivery methods for a notification that the user is subscribed to. Multiple delivery method keyNames can be supplied to create multiple delivery methods for the specified notification. Available delivery methods - &#039;EMAIL&#039;. Available notifications - &#039;PLANNED_MAINTENANCE&#039;, &#039;UNPLANNED_INCIDENT&#039;. </documentation>
<input message="tns:createSubscriberDeliveryMethods"/>
<output message="tns:createSubscriberDeliveryMethodsResponse"/>
</operation>
<operation name="deactivateNotificationSubscriber">
<documentation>Create a new subscriber for a given resource. </documentation>
<input message="tns:deactivateNotificationSubscriber"/>
<output message="tns:deactivateNotificationSubscriberResponse"/>
</operation>
<operation name="declineInvitation">
<documentation>Declines an invitation to link an OpenIdConnect identity to a SoftLayer (Atlas) identity and account. Note that this uses a registration code that is likely a one-time-use-only token, so if an invitation has already been processed (accepted or previously declined) it will not be possible to process it a second time. </documentation>
<input message="tns:declineInvitation"/>
</operation>
<operation name="editObject">
<documentation>Account master users and sub-users who have the User Manage permission in the SoftLayer customer portal can update other user&#039;s information. Use editObject() if you wish to edit a single user account. Users who do not have the User Manage permission can only update their own information. </documentation>
<input message="tns:editObject"/>
<output message="tns:editObjectResponse"/>
</operation>
<operation name="editObjects">
<documentation>Account master users and sub-users who have the User Manage permission in the SoftLayer customer portal can update other user&#039;s information. Use editObjects() if you wish to edit multiple users at once. Users who do not have the User Manage permission can only update their own information. </documentation>
<input message="tns:editObjects"/>
<output message="tns:editObjectsResponse"/>
</operation>
<operation name="findUserPreference">
<documentation></documentation>
<input message="tns:findUserPreference"/>
<output message="tns:findUserPreferenceResponse"/>
</operation>
<operation name="forceChangePaasOwner">
<documentation>Sets a PaaS Account owner to the given IBMid username. The IBMid must already exist. </documentation>
<input message="tns:forceChangePaasOwner"/>
</operation>
<operation name="getAccount">
<documentation>Retrieve the customer account that a user belongs to.</documentation>
<input message="tns:getAccount"/>
<output message="tns:getAccountResponse"/>
</operation>
<operation name="getActions">
<documentation></documentation>
<input message="tns:getActions"/>
<output message="tns:getActionsResponse"/>
</operation>
<operation name="getActiveExternalAuthenticationVendors">
<documentation>The getActiveExternalAuthenticationVendors method will return a list of available external vendors that a SoftLayer user can authenticate against. The list will only contain vendors for which the user has at least one active external binding. </documentation>
<input message="tns:getActiveExternalAuthenticationVendors"/>
<output message="tns:getActiveExternalAuthenticationVendorsResponse"/>
</operation>
<operation name="getAdditionalEmails">
<documentation>Retrieve a portal user&#039;s additional email addresses. These email addresses are contacted when updates are made to support tickets.</documentation>
<input message="tns:getAdditionalEmails"/>
<output message="tns:getAdditionalEmailsResponse"/>
</operation>
<operation name="getAgentImpersonationToken">
<documentation></documentation>
<input message="tns:getAgentImpersonationToken"/>
<output message="tns:getAgentImpersonationTokenResponse"/>
</operation>
<operation name="getAllowedDedicatedHostIds">
<documentation></documentation>
<input message="tns:getAllowedDedicatedHostIds"/>
<output message="tns:getAllowedDedicatedHostIdsResponse"/>
</operation>
<operation name="getAllowedHardwareIds">
<documentation></documentation>
<input message="tns:getAllowedHardwareIds"/>
<output message="tns:getAllowedHardwareIdsResponse"/>