softlayer 0.0.14 → 0.0.15
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.
- checksums.yaml +4 -4
- data/data/.services_cache +35 -23
- data/data/Account.wsdl +81 -0
- data/data/Hardware_SecurityModule.wsdl +2321 -365
- data/data/Network_Bandwidth_Version1_Allotment.wsdl +3 -1
- data/data/Network_Storage_Schedule.wsdl +25 -0
- data/data/User_Customer_Invitation.wsdl +99 -0
- data/data/User_Customer_OpenIdConnect.wsdl +2582 -0
- data/data/Utility_Network.wsdl +0 -63
- data/data/types.xsd +115 -16
- data/lib/softlayer/account.rb +24 -0
- data/lib/softlayer/hardware/security_module.rb +393 -16
- data/lib/softlayer/network/bandwidth/version1/allotment.rb +1 -1
- data/lib/softlayer/network/service/resource/monitoring_hub.rb +2 -0
- data/lib/softlayer/network/storage/schedule.rb +7 -0
- data/lib/softlayer/software/component/security/safe_net.rb +15 -0
- data/lib/softlayer/software/component/security.rb +14 -0
- data/lib/softlayer/software/component.rb +1 -0
- data/lib/softlayer/user/customer/invitation.rb +49 -0
- data/lib/softlayer/user/customer/open_id_connect.rb +535 -0
- data/lib/softlayer/user/customer.rb +4 -2
- data/lib/softlayer/utility/network.rb +0 -15
- data/lib/softlayer/version.rb +1 -1
- metadata +9 -3
@@ -15,6 +15,7 @@ module Softlayer
|
|
15
15
|
attr_accessor :volume_id
|
16
16
|
attr_accessor :event_count
|
17
17
|
attr_accessor :property_count
|
18
|
+
attr_accessor :replica_snapshot_count
|
18
19
|
attr_accessor :snapshot_count
|
19
20
|
attr_accessor :day_of_month
|
20
21
|
attr_accessor :day_of_week
|
@@ -24,6 +25,7 @@ module Softlayer
|
|
24
25
|
attr_accessor :month_of_year
|
25
26
|
attr_accessor :partnership
|
26
27
|
attr_accessor :properties
|
28
|
+
attr_accessor :replica_snapshots
|
27
29
|
attr_accessor :retention_count
|
28
30
|
attr_accessor :snapshots
|
29
31
|
attr_accessor :type
|
@@ -79,6 +81,10 @@ module Softlayer
|
|
79
81
|
request(:get_properties, Array[Softlayer::Network::Storage::Schedule::Property])
|
80
82
|
end
|
81
83
|
|
84
|
+
def get_replica_snapshots
|
85
|
+
request(:get_replica_snapshots, Array[Softlayer::Network::Storage])
|
86
|
+
end
|
87
|
+
|
82
88
|
def get_retention_count
|
83
89
|
request(:get_retention_count, String)
|
84
90
|
end
|
@@ -108,6 +114,7 @@ module Softlayer
|
|
108
114
|
property :volume_id, type: Integer
|
109
115
|
property :event_count, type: BigDecimal
|
110
116
|
property :property_count, type: BigDecimal
|
117
|
+
property :replica_snapshot_count, type: BigDecimal
|
111
118
|
property :snapshot_count, type: BigDecimal
|
112
119
|
property :day_of_month, type: String
|
113
120
|
property :day_of_week, type: String
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module Softlayer
|
2
|
+
module Software
|
3
|
+
class Component
|
4
|
+
class Security
|
5
|
+
class SafeNet < Softlayer::Software::Component::Security
|
6
|
+
|
7
|
+
class Representer < Softlayer::Software::Component::Security::Representer
|
8
|
+
include Representable::Hash
|
9
|
+
include Representable::Coercion
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Softlayer
|
2
|
+
module Software
|
3
|
+
class Component
|
4
|
+
class Security < Softlayer::Software::Component
|
5
|
+
autoload :SafeNet, 'softlayer/software/component/security/safe_net'
|
6
|
+
|
7
|
+
class Representer < Softlayer::Software::Component::Representer
|
8
|
+
include Representable::Hash
|
9
|
+
include Representable::Coercion
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -9,6 +9,7 @@ module Softlayer
|
|
9
9
|
autoload :OperatingSystem, 'softlayer/software/component/operating_system'
|
10
10
|
autoload :Package, 'softlayer/software/component/package'
|
11
11
|
autoload :Password, 'softlayer/software/component/password'
|
12
|
+
autoload :Security, 'softlayer/software/component/security'
|
12
13
|
attr_accessor :hardware_id
|
13
14
|
attr_accessor :id
|
14
15
|
attr_accessor :manufacturer_activation_code
|
@@ -0,0 +1,49 @@
|
|
1
|
+
module Softlayer
|
2
|
+
module User
|
3
|
+
class Customer
|
4
|
+
class Invitation < Softlayer::Entity
|
5
|
+
SERVICE = 'SoftLayer_User_Customer_Invitation'
|
6
|
+
attr_accessor :code
|
7
|
+
attr_accessor :create_date
|
8
|
+
attr_accessor :creator_id
|
9
|
+
attr_accessor :creator_type
|
10
|
+
attr_accessor :email
|
11
|
+
attr_accessor :existing_blue_id_flag
|
12
|
+
attr_accessor :expiration_date
|
13
|
+
attr_accessor :id
|
14
|
+
attr_accessor :is_federated_email_domain_flag
|
15
|
+
attr_accessor :modify_date
|
16
|
+
attr_accessor :response_date
|
17
|
+
attr_accessor :status_id
|
18
|
+
attr_accessor :user_id
|
19
|
+
attr_accessor :user
|
20
|
+
|
21
|
+
def get_object
|
22
|
+
request(:get_object, Softlayer::User::Customer::Invitation)
|
23
|
+
end
|
24
|
+
|
25
|
+
def get_user
|
26
|
+
request(:get_user, Softlayer::User::Customer)
|
27
|
+
end
|
28
|
+
|
29
|
+
class Representer < Softlayer::Entity::Representer
|
30
|
+
include Representable::Hash
|
31
|
+
include Representable::Coercion
|
32
|
+
property :code, type: String
|
33
|
+
property :create_date, type: DateTime
|
34
|
+
property :creator_id, type: Integer
|
35
|
+
property :creator_type, type: String
|
36
|
+
property :email, type: String
|
37
|
+
property :existing_blue_id_flag, type: Integer
|
38
|
+
property :expiration_date, type: DateTime
|
39
|
+
property :id, type: Integer
|
40
|
+
property :is_federated_email_domain_flag, type: Integer
|
41
|
+
property :modify_date, type: DateTime
|
42
|
+
property :response_date, type: DateTime
|
43
|
+
property :status_id, type: Integer
|
44
|
+
property :user_id, type: Integer
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,535 @@
|
|
1
|
+
module Softlayer
|
2
|
+
module User
|
3
|
+
class Customer
|
4
|
+
class OpenIdConnect < Softlayer::User::Customer
|
5
|
+
SERVICE = 'SoftLayer_User_Customer_OpenIdConnect'
|
6
|
+
|
7
|
+
def acknowledge_support_policy
|
8
|
+
request(:acknowledge_support_policy, nil)
|
9
|
+
end
|
10
|
+
|
11
|
+
def add_api_authentication_key
|
12
|
+
request(:add_api_authentication_key, String)
|
13
|
+
end
|
14
|
+
|
15
|
+
# hardware_ids
|
16
|
+
def add_bulk_hardware_access(message)
|
17
|
+
request(:add_bulk_hardware_access, Boolean, message)
|
18
|
+
end
|
19
|
+
|
20
|
+
# permissions
|
21
|
+
def add_bulk_portal_permission(message)
|
22
|
+
request(:add_bulk_portal_permission, Boolean, message)
|
23
|
+
end
|
24
|
+
|
25
|
+
# roles
|
26
|
+
def add_bulk_roles(message)
|
27
|
+
request(:add_bulk_roles, nil, message)
|
28
|
+
end
|
29
|
+
|
30
|
+
# virtual_guest_ids
|
31
|
+
def add_bulk_virtual_guest_access(message)
|
32
|
+
request(:add_bulk_virtual_guest_access, Boolean, message)
|
33
|
+
end
|
34
|
+
|
35
|
+
# external_binding
|
36
|
+
def add_external_binding(message)
|
37
|
+
request(:add_external_binding, Softlayer::User::Customer::External::Binding, message)
|
38
|
+
end
|
39
|
+
|
40
|
+
# hardware_id
|
41
|
+
def add_hardware_access(message)
|
42
|
+
request(:add_hardware_access, Boolean, message)
|
43
|
+
end
|
44
|
+
|
45
|
+
# notification_key_name
|
46
|
+
def add_notification_subscriber(message)
|
47
|
+
request(:add_notification_subscriber, Boolean, message)
|
48
|
+
end
|
49
|
+
|
50
|
+
# permission
|
51
|
+
def add_portal_permission(message)
|
52
|
+
request(:add_portal_permission, Boolean, message)
|
53
|
+
end
|
54
|
+
|
55
|
+
# role
|
56
|
+
def add_role(message)
|
57
|
+
request(:add_role, nil, message)
|
58
|
+
end
|
59
|
+
|
60
|
+
# virtual_guest_id
|
61
|
+
def add_virtual_guest_access(message)
|
62
|
+
request(:add_virtual_guest_access, Boolean, message)
|
63
|
+
end
|
64
|
+
|
65
|
+
# preference_type_key_name
|
66
|
+
# value
|
67
|
+
def change_preference(message)
|
68
|
+
request(:change_preference, Array[Softlayer::User::Preference], message)
|
69
|
+
end
|
70
|
+
|
71
|
+
# authentication_container
|
72
|
+
def self.check_external_authentication_status(message)
|
73
|
+
request(:check_external_authentication_status, Softlayer::Container::User::Customer::Portal::Token, message)
|
74
|
+
end
|
75
|
+
|
76
|
+
# key_name
|
77
|
+
# resource_table_id
|
78
|
+
def create_notification_subscriber(message)
|
79
|
+
request(:create_notification_subscriber, Boolean, message)
|
80
|
+
end
|
81
|
+
|
82
|
+
# template_object
|
83
|
+
# password
|
84
|
+
# vpn_password
|
85
|
+
def self.create_object(message)
|
86
|
+
request(:create_object, Softlayer::User::Customer::OpenIdConnect, message)
|
87
|
+
end
|
88
|
+
|
89
|
+
# notification_key_name
|
90
|
+
# delivery_method_key_names
|
91
|
+
def create_subscriber_delivery_methods(message)
|
92
|
+
request(:create_subscriber_delivery_methods, Boolean, message)
|
93
|
+
end
|
94
|
+
|
95
|
+
# key_name
|
96
|
+
# resource_table_id
|
97
|
+
def deactivate_notification_subscriber(message)
|
98
|
+
request(:deactivate_notification_subscriber, Boolean, message)
|
99
|
+
end
|
100
|
+
|
101
|
+
# template_object
|
102
|
+
def edit_object(message)
|
103
|
+
request(:edit_object, Boolean, message)
|
104
|
+
end
|
105
|
+
|
106
|
+
# template_objects
|
107
|
+
def self.edit_objects(message)
|
108
|
+
request(:edit_objects, Boolean, message)
|
109
|
+
end
|
110
|
+
|
111
|
+
# profile_name
|
112
|
+
# container_keyname
|
113
|
+
# preference_keyname
|
114
|
+
def find_user_preference(message)
|
115
|
+
request(:find_user_preference, Array[Softlayer::Layout::Profile], message)
|
116
|
+
end
|
117
|
+
|
118
|
+
# provider_type
|
119
|
+
# redirection_url
|
120
|
+
def self.generate_authorization_endpoint_url(message)
|
121
|
+
request(:generate_authorization_endpoint_url, String, message)
|
122
|
+
end
|
123
|
+
|
124
|
+
def get_account
|
125
|
+
request(:get_account, Softlayer::Account)
|
126
|
+
end
|
127
|
+
|
128
|
+
def get_actions
|
129
|
+
request(:get_actions, Array[Softlayer::User::Permission::Action])
|
130
|
+
end
|
131
|
+
|
132
|
+
def self.get_active_external_authentication_vendors
|
133
|
+
request(:get_active_external_authentication_vendors, Array[Softlayer::Container::User::Customer::External::Binding::Vendor])
|
134
|
+
end
|
135
|
+
|
136
|
+
def get_additional_emails
|
137
|
+
request(:get_additional_emails, Array[Softlayer::User::Customer::AdditionalEmail])
|
138
|
+
end
|
139
|
+
|
140
|
+
def get_allowed_hardware_ids
|
141
|
+
request(:get_allowed_hardware_ids, Array[Integer])
|
142
|
+
end
|
143
|
+
|
144
|
+
def get_allowed_virtual_guest_ids
|
145
|
+
request(:get_allowed_virtual_guest_ids, Array[Integer])
|
146
|
+
end
|
147
|
+
|
148
|
+
def get_api_authentication_keys
|
149
|
+
request(:get_api_authentication_keys, Array[Softlayer::User::Customer::ApiAuthentication])
|
150
|
+
end
|
151
|
+
|
152
|
+
# token
|
153
|
+
def get_authentication_token(message)
|
154
|
+
request(:get_authentication_token, Softlayer::Container::User::Authentication::Token, message)
|
155
|
+
end
|
156
|
+
|
157
|
+
def get_cdn_accounts
|
158
|
+
request(:get_cdn_accounts, Array[Softlayer::Network::ContentDelivery::Account])
|
159
|
+
end
|
160
|
+
|
161
|
+
def get_child_users
|
162
|
+
request(:get_child_users, Array[Softlayer::User::Customer])
|
163
|
+
end
|
164
|
+
|
165
|
+
def get_closed_tickets
|
166
|
+
request(:get_closed_tickets, Array[Softlayer::Ticket])
|
167
|
+
end
|
168
|
+
|
169
|
+
# key
|
170
|
+
def self.get_default_security_questions(message)
|
171
|
+
request(:get_default_security_questions, Array[Softlayer::User::Security::Question], message)
|
172
|
+
end
|
173
|
+
|
174
|
+
def get_external_bindings
|
175
|
+
request(:get_external_bindings, Array[Softlayer::User::External::Binding])
|
176
|
+
end
|
177
|
+
|
178
|
+
def get_hardware
|
179
|
+
request(:get_hardware, Array[Softlayer::Hardware])
|
180
|
+
end
|
181
|
+
|
182
|
+
def get_hardware_count
|
183
|
+
request(:get_hardware_count, Integer)
|
184
|
+
end
|
185
|
+
|
186
|
+
def get_hardware_notifications
|
187
|
+
request(:get_hardware_notifications, Array[Softlayer::User::Customer::Notification::Hardware])
|
188
|
+
end
|
189
|
+
|
190
|
+
def get_has_acknowledged_support_policy_flag
|
191
|
+
request(:get_has_acknowledged_support_policy_flag, Boolean)
|
192
|
+
end
|
193
|
+
|
194
|
+
def get_has_full_hardware_access_flag
|
195
|
+
request(:get_has_full_hardware_access_flag, Boolean)
|
196
|
+
end
|
197
|
+
|
198
|
+
def get_has_full_virtual_guest_access_flag
|
199
|
+
request(:get_has_full_virtual_guest_access_flag, Boolean)
|
200
|
+
end
|
201
|
+
|
202
|
+
def get_impersonation_token
|
203
|
+
request(:get_impersonation_token, String)
|
204
|
+
end
|
205
|
+
|
206
|
+
def get_layout_profiles
|
207
|
+
request(:get_layout_profiles, Array[Softlayer::Layout::Profile])
|
208
|
+
end
|
209
|
+
|
210
|
+
def get_locale
|
211
|
+
request(:get_locale, Softlayer::Locale)
|
212
|
+
end
|
213
|
+
|
214
|
+
def get_login_attempts
|
215
|
+
request(:get_login_attempts, Array[Softlayer::User::Customer::Access::Authentication])
|
216
|
+
end
|
217
|
+
|
218
|
+
def get_mobile_devices
|
219
|
+
request(:get_mobile_devices, Array[Softlayer::User::Customer::MobileDevice])
|
220
|
+
end
|
221
|
+
|
222
|
+
def get_notification_subscribers
|
223
|
+
request(:get_notification_subscribers, Array[Softlayer::Notification::Subscriber])
|
224
|
+
end
|
225
|
+
|
226
|
+
def get_object
|
227
|
+
request(:get_object, Softlayer::User::Customer::OpenIdConnect)
|
228
|
+
end
|
229
|
+
|
230
|
+
def get_open_tickets
|
231
|
+
request(:get_open_tickets, Array[Softlayer::Ticket])
|
232
|
+
end
|
233
|
+
|
234
|
+
def get_overrides
|
235
|
+
request(:get_overrides, Array[Softlayer::Network::Service::Vpn::Overrides])
|
236
|
+
end
|
237
|
+
|
238
|
+
def get_parent
|
239
|
+
request(:get_parent, Softlayer::User::Customer)
|
240
|
+
end
|
241
|
+
|
242
|
+
def get_permissions
|
243
|
+
request(:get_permissions, Array[Softlayer::User::Customer::CustomerPermission::Permission])
|
244
|
+
end
|
245
|
+
|
246
|
+
# username
|
247
|
+
# password
|
248
|
+
# security_question_id
|
249
|
+
# security_question_answer
|
250
|
+
def self.get_portal_login_token(message)
|
251
|
+
request(:get_portal_login_token, Softlayer::Container::User::Customer::Portal::Token, message)
|
252
|
+
end
|
253
|
+
|
254
|
+
# provider_type
|
255
|
+
# access_token
|
256
|
+
# account_id
|
257
|
+
def self.get_portal_login_token_open_id_connect(message)
|
258
|
+
request(:get_portal_login_token_open_id_connect, Softlayer::Container::User::Customer::Portal::Token, message)
|
259
|
+
end
|
260
|
+
|
261
|
+
# preference_type_key_name
|
262
|
+
def get_preference(message)
|
263
|
+
request(:get_preference, Softlayer::User::Preference, message)
|
264
|
+
end
|
265
|
+
|
266
|
+
def get_preference_types
|
267
|
+
request(:get_preference_types, Array[Softlayer::User::Preference::Type])
|
268
|
+
end
|
269
|
+
|
270
|
+
def get_preferences
|
271
|
+
request(:get_preferences, Array[Softlayer::User::Preference])
|
272
|
+
end
|
273
|
+
|
274
|
+
def get_roles
|
275
|
+
request(:get_roles, Array[Softlayer::User::Permission::Role])
|
276
|
+
end
|
277
|
+
|
278
|
+
def get_salesforce_user_link
|
279
|
+
request(:get_salesforce_user_link, Softlayer::User::Customer::Link)
|
280
|
+
end
|
281
|
+
|
282
|
+
def get_security_answers
|
283
|
+
request(:get_security_answers, Array[Softlayer::User::Customer::Security::Answer])
|
284
|
+
end
|
285
|
+
|
286
|
+
def get_subscribers
|
287
|
+
request(:get_subscribers, Array[Softlayer::Notification::User::Subscriber])
|
288
|
+
end
|
289
|
+
|
290
|
+
def get_successful_logins
|
291
|
+
request(:get_successful_logins, Array[Softlayer::User::Customer::Access::Authentication])
|
292
|
+
end
|
293
|
+
|
294
|
+
def get_support_policy_acknowledgement_required_flag
|
295
|
+
request(:get_support_policy_acknowledgement_required_flag, Integer)
|
296
|
+
end
|
297
|
+
|
298
|
+
def get_support_policy_document
|
299
|
+
request(:get_support_policy_document, Softlayer::Base64Binary)
|
300
|
+
end
|
301
|
+
|
302
|
+
def get_support_policy_name
|
303
|
+
request(:get_support_policy_name, String)
|
304
|
+
end
|
305
|
+
|
306
|
+
def get_supported_locales
|
307
|
+
request(:get_supported_locales, Array[Softlayer::Locale])
|
308
|
+
end
|
309
|
+
|
310
|
+
def get_survey_required_flag
|
311
|
+
request(:get_survey_required_flag, Boolean)
|
312
|
+
end
|
313
|
+
|
314
|
+
def get_surveys
|
315
|
+
request(:get_surveys, Array[Softlayer::Survey])
|
316
|
+
end
|
317
|
+
|
318
|
+
def get_tickets
|
319
|
+
request(:get_tickets, Array[Softlayer::Ticket])
|
320
|
+
end
|
321
|
+
|
322
|
+
def get_timezone
|
323
|
+
request(:get_timezone, Softlayer::Locale::Timezone)
|
324
|
+
end
|
325
|
+
|
326
|
+
def get_unsuccessful_logins
|
327
|
+
request(:get_unsuccessful_logins, Array[Softlayer::User::Customer::Access::Authentication])
|
328
|
+
end
|
329
|
+
|
330
|
+
# key
|
331
|
+
def self.get_user_from_lost_password_request(message)
|
332
|
+
request(:get_user_from_lost_password_request, Array[Softlayer::User::Security::Question], message)
|
333
|
+
end
|
334
|
+
|
335
|
+
def get_user_links
|
336
|
+
request(:get_user_links, Array[Softlayer::User::Customer::Link])
|
337
|
+
end
|
338
|
+
|
339
|
+
# profile_name
|
340
|
+
# container_keyname
|
341
|
+
def get_user_preferences(message)
|
342
|
+
request(:get_user_preferences, Array[Softlayer::Layout::Profile], message)
|
343
|
+
end
|
344
|
+
|
345
|
+
def get_user_status
|
346
|
+
request(:get_user_status, Softlayer::User::Customer::Status)
|
347
|
+
end
|
348
|
+
|
349
|
+
def get_virtual_guest_count
|
350
|
+
request(:get_virtual_guest_count, Integer)
|
351
|
+
end
|
352
|
+
|
353
|
+
def get_virtual_guests
|
354
|
+
request(:get_virtual_guests, Array[Softlayer::Virtual::Guest])
|
355
|
+
end
|
356
|
+
|
357
|
+
def in_terminal_status
|
358
|
+
request(:in_terminal_status, Boolean)
|
359
|
+
end
|
360
|
+
|
361
|
+
# authentication_container
|
362
|
+
def self.initiate_external_authentication(message)
|
363
|
+
request(:initiate_external_authentication, String, message)
|
364
|
+
end
|
365
|
+
|
366
|
+
def is_master_user
|
367
|
+
request(:is_master_user, Boolean)
|
368
|
+
end
|
369
|
+
|
370
|
+
# password
|
371
|
+
def is_valid_forum_password(message)
|
372
|
+
request(:is_valid_forum_password, Boolean, message)
|
373
|
+
end
|
374
|
+
|
375
|
+
# password
|
376
|
+
def is_valid_portal_password(message)
|
377
|
+
request(:is_valid_portal_password, Boolean, message)
|
378
|
+
end
|
379
|
+
|
380
|
+
# username
|
381
|
+
# email
|
382
|
+
def self.lost_password(message)
|
383
|
+
request(:lost_password, Boolean, message)
|
384
|
+
end
|
385
|
+
|
386
|
+
# authentication_container
|
387
|
+
def self.perform_external_authentication(message)
|
388
|
+
request(:perform_external_authentication, Softlayer::Container::User::Customer::Portal::Token, message)
|
389
|
+
end
|
390
|
+
|
391
|
+
def remove_all_hardware_access_for_this_user
|
392
|
+
request(:remove_all_hardware_access_for_this_user, Boolean)
|
393
|
+
end
|
394
|
+
|
395
|
+
def remove_all_virtual_access_for_this_user
|
396
|
+
request(:remove_all_virtual_access_for_this_user, Boolean)
|
397
|
+
end
|
398
|
+
|
399
|
+
# key_id
|
400
|
+
def self.remove_api_authentication_key(message)
|
401
|
+
request(:remove_api_authentication_key, Boolean, message)
|
402
|
+
end
|
403
|
+
|
404
|
+
# hardware_ids
|
405
|
+
def remove_bulk_hardware_access(message)
|
406
|
+
request(:remove_bulk_hardware_access, Boolean, message)
|
407
|
+
end
|
408
|
+
|
409
|
+
# permissions
|
410
|
+
def remove_bulk_portal_permission(message)
|
411
|
+
request(:remove_bulk_portal_permission, Boolean, message)
|
412
|
+
end
|
413
|
+
|
414
|
+
# roles
|
415
|
+
def remove_bulk_roles(message)
|
416
|
+
request(:remove_bulk_roles, nil, message)
|
417
|
+
end
|
418
|
+
|
419
|
+
# virtual_guest_ids
|
420
|
+
def remove_bulk_virtual_guest_access(message)
|
421
|
+
request(:remove_bulk_virtual_guest_access, Boolean, message)
|
422
|
+
end
|
423
|
+
|
424
|
+
# external_binding
|
425
|
+
def remove_external_binding(message)
|
426
|
+
request(:remove_external_binding, Boolean, message)
|
427
|
+
end
|
428
|
+
|
429
|
+
# hardware_id
|
430
|
+
def remove_hardware_access(message)
|
431
|
+
request(:remove_hardware_access, Boolean, message)
|
432
|
+
end
|
433
|
+
|
434
|
+
# permission
|
435
|
+
def remove_portal_permission(message)
|
436
|
+
request(:remove_portal_permission, Boolean, message)
|
437
|
+
end
|
438
|
+
|
439
|
+
# role
|
440
|
+
def remove_role(message)
|
441
|
+
request(:remove_role, nil, message)
|
442
|
+
end
|
443
|
+
|
444
|
+
# virtual_guest_id
|
445
|
+
def remove_virtual_guest_access(message)
|
446
|
+
request(:remove_virtual_guest_access, Boolean, message)
|
447
|
+
end
|
448
|
+
|
449
|
+
# username
|
450
|
+
# password
|
451
|
+
# new_password
|
452
|
+
# security_question_id
|
453
|
+
# security_question_answer
|
454
|
+
def self.reset_expired_password(message)
|
455
|
+
request(:reset_expired_password, Boolean, message)
|
456
|
+
end
|
457
|
+
|
458
|
+
# account_id
|
459
|
+
# saml_response
|
460
|
+
def self.saml_authenticate(message)
|
461
|
+
request(:saml_authenticate, Softlayer::Container::User::Customer::Portal::Token, message)
|
462
|
+
end
|
463
|
+
|
464
|
+
# account_id
|
465
|
+
def self.saml_begin_authentication(message)
|
466
|
+
request(:saml_begin_authentication, String, message)
|
467
|
+
end
|
468
|
+
|
469
|
+
def saml_begin_logout
|
470
|
+
request(:saml_begin_logout, String)
|
471
|
+
end
|
472
|
+
|
473
|
+
# saml_response
|
474
|
+
def saml_logout(message)
|
475
|
+
request(:saml_logout, nil, message)
|
476
|
+
end
|
477
|
+
|
478
|
+
# key
|
479
|
+
# password
|
480
|
+
# security_answers
|
481
|
+
def self.set_password_from_lost_password_request(message)
|
482
|
+
request(:set_password_from_lost_password_request, Boolean, message)
|
483
|
+
end
|
484
|
+
|
485
|
+
# password
|
486
|
+
def update_forum_password(message)
|
487
|
+
request(:update_forum_password, Boolean, message)
|
488
|
+
end
|
489
|
+
|
490
|
+
# notification_key_name
|
491
|
+
# active
|
492
|
+
def update_notification_subscriber(message)
|
493
|
+
request(:update_notification_subscriber, Boolean, message)
|
494
|
+
end
|
495
|
+
|
496
|
+
# password
|
497
|
+
def update_password(message)
|
498
|
+
request(:update_password, Boolean, message)
|
499
|
+
end
|
500
|
+
|
501
|
+
# questions
|
502
|
+
# answers
|
503
|
+
def update_security_answers(message)
|
504
|
+
request(:update_security_answers, Boolean, message)
|
505
|
+
end
|
506
|
+
|
507
|
+
# notification_key_name
|
508
|
+
# delivery_method_key_names
|
509
|
+
# active
|
510
|
+
def update_subscriber_delivery_method(message)
|
511
|
+
request(:update_subscriber_delivery_method, Boolean, message)
|
512
|
+
end
|
513
|
+
|
514
|
+
# password
|
515
|
+
def update_vpn_password(message)
|
516
|
+
request(:update_vpn_password, Boolean, message)
|
517
|
+
end
|
518
|
+
|
519
|
+
def update_vpn_user
|
520
|
+
request(:update_vpn_user, Boolean)
|
521
|
+
end
|
522
|
+
|
523
|
+
# authentication_token
|
524
|
+
def self.validate_authentication_token(message)
|
525
|
+
request(:validate_authentication_token, Softlayer::Container::User::Customer::Portal::Token, message)
|
526
|
+
end
|
527
|
+
|
528
|
+
class Representer < Softlayer::User::Customer::Representer
|
529
|
+
include Representable::Hash
|
530
|
+
include Representable::Coercion
|
531
|
+
end
|
532
|
+
end
|
533
|
+
end
|
534
|
+
end
|
535
|
+
end
|
@@ -4,8 +4,10 @@ module Softlayer
|
|
4
4
|
SERVICE = 'SoftLayer_User_Customer'
|
5
5
|
autoload :AdditionalEmail, 'softlayer/user/customer/additional_email'
|
6
6
|
autoload :ApiAuthentication, 'softlayer/user/customer/api_authentication'
|
7
|
+
autoload :Invitation, 'softlayer/user/customer/invitation'
|
7
8
|
autoload :Link, 'softlayer/user/customer/link'
|
8
9
|
autoload :MobileDevice, 'softlayer/user/customer/mobile_device'
|
10
|
+
autoload :OpenIdConnect, 'softlayer/user/customer/open_id_connect'
|
9
11
|
autoload :Prospect, 'softlayer/user/customer/prospect'
|
10
12
|
autoload :Status, 'softlayer/user/customer/status'
|
11
13
|
autoload :Access, 'softlayer/user/customer/access'
|
@@ -35,7 +37,7 @@ module Softlayer
|
|
35
37
|
attr_accessor :last_name
|
36
38
|
attr_accessor :locale_id
|
37
39
|
attr_accessor :managed_by_federation_flag
|
38
|
-
attr_accessor :
|
40
|
+
attr_accessor :managed_by_open_id_connect_flag
|
39
41
|
attr_accessor :modify_date
|
40
42
|
attr_accessor :msn
|
41
43
|
attr_accessor :name_id
|
@@ -655,7 +657,7 @@ module Softlayer
|
|
655
657
|
property :last_name, type: String
|
656
658
|
property :locale_id, type: Integer
|
657
659
|
property :managed_by_federation_flag, type: Boolean
|
658
|
-
property :
|
660
|
+
property :managed_by_open_id_connect_flag, type: Boolean
|
659
661
|
property :modify_date, type: DateTime
|
660
662
|
property :msn, type: String
|
661
663
|
property :name_id, type: String
|