Class: LibLynxAPI::Samlidp
- Inherits:
-
Object
- Object
- LibLynxAPI::Samlidp
- Defined in:
- lib/liblynx-api/client.rb
Instance Method Summary collapse
-
#create(account_identity, body = {}) ⇒ Object
Create a new samlidp.
-
#delete(account_identity, samlidp_identity) ⇒ Object
Delete an existing samlidp.
-
#info(account_identity, samlidp_identity) ⇒ Object
Info for existing samlidp.
-
#initialize(client) ⇒ Samlidp
constructor
A new instance of Samlidp.
-
#list(account_identity) ⇒ Object
List existing samlidps.
Constructor Details
#initialize(client) ⇒ Samlidp
Returns a new instance of Samlidp.
264 265 266 |
# File 'lib/liblynx-api/client.rb', line 264 def initialize(client) @client = client end |
Instance Method Details
#create(account_identity, body = {}) ⇒ Object
Create a new samlidp.
272 273 274 |
# File 'lib/liblynx-api/client.rb', line 272 def create(account_identity, body = {}) @client.samlidp.create(account_identity, body) end |
#delete(account_identity, samlidp_identity) ⇒ Object
Delete an existing samlidp.
280 281 282 |
# File 'lib/liblynx-api/client.rb', line 280 def delete(account_identity, samlidp_identity) @client.samlidp.delete(account_identity, samlidp_identity) end |
#info(account_identity, samlidp_identity) ⇒ Object
Info for existing samlidp.
288 289 290 |
# File 'lib/liblynx-api/client.rb', line 288 def info(account_identity, samlidp_identity) @client.samlidp.info(account_identity, samlidp_identity) end |
#list(account_identity) ⇒ Object
List existing samlidps.
295 296 297 |
# File 'lib/liblynx-api/client.rb', line 295 def list(account_identity) @client.samlidp.list(account_identity) end |