import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type DriveGroupInput = { /** * The name of the drive group */ name: string; /** * The display name of the drive group */ displayName?: string | null | undefined; /** * A description of the object. */ description?: string | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const DriveGroupInput$inboundSchema: z.ZodType; /** @internal */ export type DriveGroupInput$Outbound = { name: string; display_name?: string | null | undefined; description?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const DriveGroupInput$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace DriveGroupInput$ { /** @deprecated use `DriveGroupInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DriveGroupInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DriveGroupInput$Outbound` instead. */ type Outbound = DriveGroupInput$Outbound; } export declare function driveGroupInputToJSON(driveGroupInput: DriveGroupInput): string; export declare function driveGroupInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=drivegroupinput.d.ts.map