import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListResourceDeploymentsGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export declare const ListResourceDeploymentsArea: { readonly Container: "container"; readonly Worker: "worker"; readonly Daemon: "daemon"; readonly Ai: "ai"; }; export type ListResourceDeploymentsArea = ClosedEnum; export type ListResourceDeploymentsRequest = { area: ListResourceDeploymentsArea; resourceId: string; /** * Filter by project ID or name. */ project: string; deploymentGroupId?: string | undefined; deploymentId?: string | undefined; }; export type ListResourceDeploymentsDeployment = { deploymentId: string; deploymentName: string; deploymentGroupId: string | null; deploymentGroupName: string | null; resourceType: string; resourceId: string; backend: string; controllerPlatform: string; health: string; lifecycle: string; message: string | null; partial: boolean; providerStale: boolean; platformStale: boolean; desiredCount: number | null; currentCount: number | null; readyCount: number | null; observedAt: Date; }; /** * Deployments where the resource is installed. */ export type ListResourceDeploymentsResponse = { resourceType: string; resourceId: string; deployments: Array; }; /** @internal */ export declare const ListResourceDeploymentsArea$outboundSchema: z.ZodEnum; /** @internal */ export type ListResourceDeploymentsRequest$Outbound = { area: string; resourceId: string; project: string; deploymentGroupId?: string | undefined; deploymentId?: string | undefined; }; /** @internal */ export declare const ListResourceDeploymentsRequest$outboundSchema: z.ZodType; export declare function listResourceDeploymentsRequestToJSON(listResourceDeploymentsRequest: ListResourceDeploymentsRequest): string; /** @internal */ export declare const ListResourceDeploymentsDeployment$inboundSchema: z.ZodType; export declare function listResourceDeploymentsDeploymentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListResourceDeploymentsResponse$inboundSchema: z.ZodType; export declare function listResourceDeploymentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listresourcedeployments.d.ts.map