@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
44 lines (43 loc) • 1.47 kB
TypeScript
import { AppContext } from '../../data/app-context';
import { SharedCache, SharedCacheOptions } from '../shared-cache';
import { GatewayInventoryDetail, GatewayInventoryDetailData, GatewayInventoryDetailParams } from './gateway-inventory-detail';
/**
* Gateway Inventory Detail cache class.
*/
export declare class GatewayInventoryDetailCache extends SharedCache<GatewayInventoryDetail, GatewayInventoryDetailData, GatewayInventoryDetailParams> {
private appContext;
private static uniqueId;
private static uniqueVersion;
private static gatewayName;
/**
* Initializes a new instance of the GatewayInventoryCache class.
*
* @param appContext the app context.
* @param options the option of shared cache.
*/
constructor(appContext: AppContext, options?: SharedCacheOptions);
/**
* Defines how to collect the gateway inventory detail data.
*
* @return the Observable of GatewayInventoryDetail data.
*/
private dataQuery;
/**
* Defines how to identify the cache entry by params.
*
* @return the id string.
*/
private dataInstanceId;
/**
* Defines how to deserialize the class object from serialized data.
*
* @param serialized the serialized string;
*/
private dataDeserialize;
/**
* Defines how to serialize the class object to seralized data.
*
* @param instance the class instance.
*/
private dataSerialize;
}