Class: Seam::Clients::AcsCredentialPools

Inherits:
BaseClient
  • Object
show all
Defined in:
lib/seam/clients/acs_credential_pools.rb

Instance Attribute Summary

Attributes inherited from BaseClient

#client

Instance Method Summary collapse

Methods inherited from BaseClient

#initialize, #request_seam, #request_seam_object

Constructor Details

This class inherits a constructor from Seam::Clients::BaseClient

Instance Method Details

#list(acs_system_id:) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/seam/clients/acs_credential_pools.rb', line 6

def list(acs_system_id:)
  request_seam_object(
    :post,
    "/acs/credential_pools/list",
    Seam::AcsCredentialPool,
    "acs_credential_pools",
    body: {acs_system_id: acs_system_id}.compact
  )
end