@shi-corp/sdk-data-gateway
Version:
SDK client used to interface with the SHI Data Gateway service.
71 lines (70 loc) • 2.86 kB
TypeScript
import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
export interface Count extends AdditionalDataHolder, Parsable {
/**
* Count of Enterprise Devices that are allowed to be managed.
*/
enterpriseDeviceCount?: number | null;
/**
* Count of Enterprise Interfaces that are allowed to be managed.
*/
enterpriseInterfaceCount?: number | null;
/**
* Count of Enterprise Intermediaries that are allowed to be managed.
*/
enterpriseIntermediaryCount?: number | null;
/**
* Count of Enterprise Users that are allowed to be managed.
*/
enterpriseUserCount?: number | null;
/**
* Count of Privileged Devices (PAW) that are allowed to be managed.
*/
privilegedDeviceCount?: number | null;
/**
* Count of Privileged Interfaces that are allowed to be managed.
*/
privilegedInterfaceCount?: number | null;
/**
* Count of Privileged Intermediaries that are allowed to be managed.
*/
privilegedIntermediaryCount?: number | null;
/**
* Count of Privileged Users that are allowed to be managed.
*/
privilegedUserCount?: number | null;
/**
* Count of Specialized Devices that are allowed to be managed.
*/
specializedDeviceCount?: number | null;
/**
* Count of Specialized Interfaces that are allowed to be managed.
*/
specializedInterfaceCount?: number | null;
/**
* Count of Specialized Intermediaries that are allowed to be managed.
*/
specializedIntermediaryCount?: number | null;
/**
* Count of Specialized Users that are allowed to be managed.
*/
specializedUserCount?: number | null;
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @returns {Count}
*/
export declare function createCountFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
/**
* The deserialization information for the current model
* @param Count The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
export declare function deserializeIntoCount(count?: Partial<Count> | undefined): Record<string, (node: ParseNode) => void>;
/**
* Serializes information the current object
* @param Count The instance to serialize from.
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
* @param writer Serialization writer to use to serialize this model
*/
export declare function serializeCount(writer: SerializationWriter, count?: Partial<Count> | undefined | null, isSerializingDerivedType?: boolean): void;