box-node-sdk
Version:
Official SDK for Box Platform APIs
28 lines (27 loc) • 905 B
TypeScript
import { SerializedData } from '../../serialization/json';
export interface KeysafeSettingsV2025R0 {
/**
* Whether KeySafe addon is enabled for the enterprise. */
readonly keysafeEnabled?: boolean;
/**
* The cloud provider. */
readonly cloudProvider?: string | null;
/**
* The key ID. */
readonly keyId?: string | null;
/**
* The account ID. */
readonly accountId?: string | null;
/**
* The location ID. */
readonly locationId?: string | null;
/**
* The project ID. */
readonly projectId?: string | null;
/**
* The key ring ID. */
readonly keyringId?: string | null;
readonly rawData?: SerializedData;
}
export declare function serializeKeysafeSettingsV2025R0(val: KeysafeSettingsV2025R0): SerializedData;
export declare function deserializeKeysafeSettingsV2025R0(val: SerializedData): KeysafeSettingsV2025R0;