class LibLynxAPI::Samlidp

Public Class Methods

new(client) click to toggle source
# File lib/liblynx-api/client.rb, line 264
def initialize(client)
  @client = client
end

Public Instance Methods

create(account_identity, body = {}) click to toggle source

Create a new samlidp.

@param account_identity: @param body: the object to pass as the request payload

# 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) click to toggle source

Delete an existing samlidp.

@param account_identity: @param samlidp_identity:

# 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) click to toggle source

Info for existing samlidp.

@param account_identity: @param samlidp_identity:

# 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) click to toggle source

List existing samlidps.

@param account_identity:

# File lib/liblynx-api/client.rb, line 295
def list(account_identity)
  @client.samlidp.list(account_identity)
end