Class GatewayResourceAbstract
Methods Abstract
create create ( params ) : Promise < Record < string , any > > Parameters params : Record < string , any > Returns Promise < Record < string , any > >
A promise that resolves with the created resource.
Abstract
delete delete ( params ) : Promise < Record < string , any > > Parameters params : Record < string , any > Returns Promise < Record < string , any > >
A promise that resolves with the result of the deletion.
Abstract
get Details get Details ( params ) : Promise < Record < string , any > > Parameters params : Record < string , any > Returns Promise < Record < string , any > >
A promise that resolves with the resource details.
Abstract
list list ( params ) : Promise < Record < string , any > > Parameters params : Record < string , any > Returns Promise < Record < string , any > >
A promise that resolves with the list of resources.
Abstract class for Gateway resources. This class provides an interface for creating, getting details, listing, and deleting resources. It must be extended by concrete resource classes.