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 GetResourceDeploymentDetailGlobals = { /** * 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 GetResourceDeploymentDetailArea: { readonly Container: "container"; readonly Worker: "worker"; readonly Daemon: "daemon"; readonly Ai: "ai"; }; export type GetResourceDeploymentDetailArea = ClosedEnum; export type GetResourceDeploymentDetailRequest = { area: GetResourceDeploymentDetailArea; deploymentId: string; resourceId: string; /** * Filter by project ID or name. */ project: string; }; export type GetResourceDeploymentDetailDeployment = { 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; desiredImage: string | null; }; export type HeartbeatMissing = { status: "missing"; deploymentId: string; resourceId: string; resourceType: string; }; export declare const BackendEnum: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Kubernetes: "kubernetes"; readonly Local: "local"; readonly Managed: "managed"; readonly External: "external"; readonly Test: "test"; }; export type BackendEnum = ClosedEnum; /** * Represents the target cloud platform. */ export declare const ControllerPlatform: { readonly Aws: "aws"; readonly Gcp: "gcp"; readonly Azure: "azure"; readonly Kubernetes: "kubernetes"; readonly Machines: "machines"; readonly Local: "local"; readonly Test: "test"; }; /** * Represents the target cloud platform. */ export type ControllerPlatform = ClosedEnum; export declare const GetResourceDeploymentDetailReason74: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason74 = ClosedEnum; export declare const CollectionIssueSeverity74: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity74 = ClosedEnum; export type CollectionIssue74 = { message: string; reason: GetResourceDeploymentDetailReason74; severity: CollectionIssueSeverity74; source: string; }; export declare const Health77: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health77 = ClosedEnum; export declare const Lifecycle77: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle77 = ClosedEnum; export type DataStatus77 = { collectionIssues: Array; health: Health77; lifecycle: Lifecycle77; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * Local: containers Docker still holds for this sandbox. */ export type DataLocal12 = { activeSessions: number; /** * Whether the loopback route is serving in this process. False after a manager restart until * * @remarks * the next tick rebinds it. */ routeServing: boolean; status: DataStatus77; backend: "local"; }; export declare const GetResourceDeploymentDetailReason73: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason73 = ClosedEnum; export declare const CollectionIssueSeverity73: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity73 = ClosedEnum; export type CollectionIssue73 = { message: string; reason: GetResourceDeploymentDetailReason73; severity: CollectionIssueSeverity73; source: string; }; export declare const Health76: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health76 = ClosedEnum; export declare const Lifecycle76: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle76 = ClosedEnum; export type DataStatus76 = { collectionIssues: Array; health: Health76; lifecycle: Lifecycle76; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * Kubernetes: pods carrying the sandbox label, in the deployment's namespace. */ export type DataKubernetesPods = { activeSessions: number; /** * Claimed but unused pods waiting in the pool. */ idlePods: number; namespace: string; status: DataStatus76; backend: "kubernetesPods"; }; export declare const GetResourceDeploymentDetailReason72: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason72 = ClosedEnum; export declare const CollectionIssueSeverity72: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity72 = ClosedEnum; export type CollectionIssue72 = { message: string; reason: GetResourceDeploymentDetailReason72; severity: CollectionIssueSeverity72; source: string; }; export declare const Health75: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health75 = ClosedEnum; export declare const Lifecycle75: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle75 = ClosedEnum; export type DataStatus75 = { collectionIssues: Array; health: Health75; lifecycle: Lifecycle75; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * GCP: the Agent Platform template sandboxes are cut from, and the engine it hangs under. * * @remarks * * No sandbox count: that needs `aiplatform.sandboxEnvironments.list`, which only the management * permission set holds. No template state either — emission is gated on reading it `ACTIVE`, * which is what `status` already says. */ export type DataGcpAgentPlatform = { /** * Reasoning engine the template hangs under, without which the template id names nothing. */ engine: string; status: DataStatus75; /** * The template sandboxes are currently cut from. */ templateId: string; backend: "gcpAgentPlatform"; }; export declare const GetResourceDeploymentDetailReason71: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason71 = ClosedEnum; export declare const CollectionIssueSeverity71: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity71 = ClosedEnum; export type CollectionIssue71 = { message: string; reason: GetResourceDeploymentDetailReason71; severity: CollectionIssueSeverity71; source: string; }; export declare const Health74: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health74 = ClosedEnum; export declare const Lifecycle74: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle74 = ClosedEnum; export type DataStatus74 = { collectionIssues: Array; health: Health74; lifecycle: Lifecycle74; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * Azure: the sandbox group's ARM state. The data plane has no list operation, so a sandbox count * * @remarks * is not available here. */ export type DataAzureSandboxGroup = { provisioningState?: string | null | undefined; sandboxGroup: string; status: DataStatus74; backend: "azureSandboxGroup"; }; export declare const GetResourceDeploymentDetailReason70: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason70 = ClosedEnum; export declare const CollectionIssueSeverity70: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity70 = ClosedEnum; export type CollectionIssue70 = { message: string; reason: GetResourceDeploymentDetailReason70; severity: CollectionIssueSeverity70; source: string; }; export declare const Health73: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health73 = ClosedEnum; export declare const Lifecycle73: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle73 = ClosedEnum; export type DataStatus73 = { collectionIssues: Array; health: Health73; lifecycle: Lifecycle73; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * AWS: the image a sandbox runs from, and the lifecycle state AWS reports for it. */ export type DataAwsMicrovm = { /** * Image the sandboxes belong to. */ imageIdentifier: string; /** * The image's own lifecycle state, which is where AWS surfaces base-image deprecation. * * @remarks * * No sandbox count sits beside it: counting means `lambda:ListMicrovms`, which authorizes * against no resource type and so cannot be granted without an account-wide reach the * permission sets refuse. A field only an over-broad grant could fill is a field whose * implementer ships AccessDenied into a customer's account. */ imageState?: string | null | undefined; status: DataStatus73; backend: "awsMicrovm"; }; /** * Content-free telemetry about what a sandbox resource is running. * * @remarks * * Never anything from inside a sandbox. A controller reaches only the cloud's management APIs, * and the whole point of the resource is that the control plane cannot see what runs in it. */ export type DataUnion18 = DataAwsMicrovm | DataAzureSandboxGroup | DataGcpAgentPlatform | DataKubernetesPods | DataLocal12; export type DataSandbox = { /** * Content-free telemetry about what a sandbox resource is running. * * @remarks * * Never anything from inside a sandbox. A controller reaches only the cloud's management APIs, * and the whole point of the resource is that the control plane cannot see what runs in it. */ data: DataAwsMicrovm | DataAzureSandboxGroup | DataGcpAgentPlatform | DataKubernetesPods | DataLocal12; resourceType: "sandbox"; }; export declare const Health72: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health72 = ClosedEnum; export declare const Lifecycle72: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle72 = ClosedEnum; export type DataStatus72 = { health: Health72; lifecycle: Lifecycle72; message?: string | null | undefined; }; export type Data8 = { enabled?: boolean | null | undefined; keyId: string; keyOperations: Array; keyType: string; recoveryLevel?: string | null | undefined; status: DataStatus72; }; export type DataAzureKeyVault2 = { data: Data8; provider: "azure-key-vault"; }; export declare const Health71: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health71 = ClosedEnum; export declare const Lifecycle71: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle71 = ClosedEnum; export type DataStatus71 = { health: Health71; lifecycle: Lifecycle71; message?: string | null | undefined; }; export type Data7 = { algorithm?: string | null | undefined; cryptoKeyName: string; primaryState?: string | null | undefined; primaryVersion?: string | null | undefined; purpose: string; status: DataStatus71; }; export type DataGcpCloudKms = { data: Data7; provider: "gcp-cloud-kms"; }; export declare const Health70: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health70 = ClosedEnum; export declare const Lifecycle70: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle70 = ClosedEnum; export type DataStatus70 = { health: Health70; lifecycle: Lifecycle70; message?: string | null | undefined; }; export type Data6 = { enabled: boolean; keyArn: string; keySpec: string; keyState: string; keyUsage: string; status: DataStatus70; }; export type DataAwsKms = { data: Data6; provider: "aws-kms"; }; export type DataUnion17 = DataAwsKms | DataGcpCloudKms | DataAzureKeyVault2; export type DataKey = { data: DataAwsKms | DataGcpCloudKms | DataAzureKeyVault2; resourceType: "key"; }; export declare const AccessTest4: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type AccessTest4 = ClosedEnum; export declare const AvailabilityEnum4: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type AvailabilityEnum4 = ClosedEnum; export declare const BlockerEnum4: { readonly AgreementRequired: "agreement-required"; readonly EntitlementRequired: "entitlement-required"; readonly ModelActivationRequired: "model-activation-required"; readonly DeploymentRequired: "deployment-required"; readonly QuotaConfigurationRequired: "quota-configuration-required"; readonly RegionUnavailable: "region-unavailable"; readonly AccessDenied: "access-denied"; readonly ObservationFailed: "observation-failed"; }; export type BlockerEnum4 = ClosedEnum; /** * A public API accepted from an application client. */ export declare const GetResourceDeploymentDetailClientApi4: { readonly OpenAiChatCompletions: "open-ai-chat-completions"; readonly OpenAiResponses: "open-ai-responses"; readonly AnthropicMessages: "anthropic-messages"; }; /** * A public API accepted from an application client. */ export type GetResourceDeploymentDetailClientApi4 = ClosedEnum; export type GetResourceDeploymentDetailModel4 = { accessTest: AccessTest4; availability: AvailabilityEnum4; blockers: Array; clientApis: Array; errorCode?: string | null | undefined; publicModelId: string; testedAt?: Date | null | undefined; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export declare const SourceEnum4: { readonly AwsBedrock: "aws-bedrock"; readonly GcpVertex: "gcp-vertex"; readonly AzureFoundry: "azure-foundry"; readonly Anthropic: "anthropic"; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export type SourceEnum4 = ClosedEnum; export type Availability4 = { catalogRevision: string; location?: string | null | undefined; models: Array; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ source: SourceEnum4; }; export type AvailabilityUnion = Availability4 | any; export declare const GetResourceDeploymentDetailReason69: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason69 = ClosedEnum; export declare const CollectionIssueSeverity69: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity69 = ClosedEnum; export type CollectionIssue69 = { message: string; reason: GetResourceDeploymentDetailReason69; severity: CollectionIssueSeverity69; source: string; }; export declare const Health69: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health69 = ClosedEnum; export declare const Lifecycle69: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle69 = ClosedEnum; export type DataStatus69 = { collectionIssues: Array; health: Health69; lifecycle: Lifecycle69; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataExternal = { availability?: Availability4 | any | null | undefined; /** * The BYO-key provider serving this binding (e.g. "openai"). Used on the Local * * @remarks * platform, where the app brings its own provider key instead of an ambient cloud. */ provider: string; status: DataStatus69; backend: "external"; }; export declare const AccessTest3: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type AccessTest3 = ClosedEnum; export declare const AvailabilityEnum3: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type AvailabilityEnum3 = ClosedEnum; export declare const BlockerEnum3: { readonly AgreementRequired: "agreement-required"; readonly EntitlementRequired: "entitlement-required"; readonly ModelActivationRequired: "model-activation-required"; readonly DeploymentRequired: "deployment-required"; readonly QuotaConfigurationRequired: "quota-configuration-required"; readonly RegionUnavailable: "region-unavailable"; readonly AccessDenied: "access-denied"; readonly ObservationFailed: "observation-failed"; }; export type BlockerEnum3 = ClosedEnum; /** * A public API accepted from an application client. */ export declare const GetResourceDeploymentDetailClientApi3: { readonly OpenAiChatCompletions: "open-ai-chat-completions"; readonly OpenAiResponses: "open-ai-responses"; readonly AnthropicMessages: "anthropic-messages"; }; /** * A public API accepted from an application client. */ export type GetResourceDeploymentDetailClientApi3 = ClosedEnum; export type GetResourceDeploymentDetailModel3 = { accessTest: AccessTest3; availability: AvailabilityEnum3; blockers: Array; clientApis: Array; errorCode?: string | null | undefined; publicModelId: string; testedAt?: Date | null | undefined; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export declare const SourceEnum3: { readonly AwsBedrock: "aws-bedrock"; readonly GcpVertex: "gcp-vertex"; readonly AzureFoundry: "azure-foundry"; readonly Anthropic: "anthropic"; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export type SourceEnum3 = ClosedEnum; export type Availability3 = { catalogRevision: string; location?: string | null | undefined; models: Array; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ source: SourceEnum3; }; export declare const GetResourceDeploymentDetailReason68: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason68 = ClosedEnum; export declare const CollectionIssueSeverity68: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity68 = ClosedEnum; export type CollectionIssue68 = { message: string; reason: GetResourceDeploymentDetailReason68; severity: CollectionIssueSeverity68; source: string; }; export declare const Health68: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health68 = ClosedEnum; export declare const Lifecycle68: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle68 = ClosedEnum; export type DataStatus68 = { collectionIssues: Array; health: Health68; lifecycle: Lifecycle68; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureFoundry = { accountName: string; availability: Availability3; endpoint?: string | null | undefined; location?: string | null | undefined; resourceGroup?: string | null | undefined; status: DataStatus68; backend: "azureFoundry"; }; export declare const AccessTest2: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type AccessTest2 = ClosedEnum; export declare const AvailabilityEnum2: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type AvailabilityEnum2 = ClosedEnum; export declare const BlockerEnum2: { readonly AgreementRequired: "agreement-required"; readonly EntitlementRequired: "entitlement-required"; readonly ModelActivationRequired: "model-activation-required"; readonly DeploymentRequired: "deployment-required"; readonly QuotaConfigurationRequired: "quota-configuration-required"; readonly RegionUnavailable: "region-unavailable"; readonly AccessDenied: "access-denied"; readonly ObservationFailed: "observation-failed"; }; export type BlockerEnum2 = ClosedEnum; /** * A public API accepted from an application client. */ export declare const GetResourceDeploymentDetailClientApi2: { readonly OpenAiChatCompletions: "open-ai-chat-completions"; readonly OpenAiResponses: "open-ai-responses"; readonly AnthropicMessages: "anthropic-messages"; }; /** * A public API accepted from an application client. */ export type GetResourceDeploymentDetailClientApi2 = ClosedEnum; export type GetResourceDeploymentDetailModel2 = { accessTest: AccessTest2; availability: AvailabilityEnum2; blockers: Array; clientApis: Array; errorCode?: string | null | undefined; publicModelId: string; testedAt?: Date | null | undefined; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export declare const SourceEnum2: { readonly AwsBedrock: "aws-bedrock"; readonly GcpVertex: "gcp-vertex"; readonly AzureFoundry: "azure-foundry"; readonly Anthropic: "anthropic"; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export type SourceEnum2 = ClosedEnum; export type Availability2 = { catalogRevision: string; location?: string | null | undefined; models: Array; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ source: SourceEnum2; }; export declare const GetResourceDeploymentDetailReason67: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason67 = ClosedEnum; export declare const CollectionIssueSeverity67: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity67 = ClosedEnum; export type CollectionIssue67 = { message: string; reason: GetResourceDeploymentDetailReason67; severity: CollectionIssueSeverity67; source: string; }; export declare const Health67: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health67 = ClosedEnum; export declare const Lifecycle67: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle67 = ClosedEnum; export type DataStatus67 = { collectionIssues: Array; health: Health67; lifecycle: Lifecycle67; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpVertex = { availability: Availability2; location: string; project: string; status: DataStatus67; backend: "gcpVertex"; }; export declare const AccessTest1: { readonly Verified: "verified"; readonly Failed: "failed"; readonly NotChecked: "not-checked"; }; export type AccessTest1 = ClosedEnum; export declare const AvailabilityEnum1: { readonly Available: "available"; readonly Blocked: "blocked"; readonly Unknown: "unknown"; }; export type AvailabilityEnum1 = ClosedEnum; export declare const BlockerEnum1: { readonly AgreementRequired: "agreement-required"; readonly EntitlementRequired: "entitlement-required"; readonly ModelActivationRequired: "model-activation-required"; readonly DeploymentRequired: "deployment-required"; readonly QuotaConfigurationRequired: "quota-configuration-required"; readonly RegionUnavailable: "region-unavailable"; readonly AccessDenied: "access-denied"; readonly ObservationFailed: "observation-failed"; }; export type BlockerEnum1 = ClosedEnum; /** * A public API accepted from an application client. */ export declare const GetResourceDeploymentDetailClientApi1: { readonly OpenAiChatCompletions: "open-ai-chat-completions"; readonly OpenAiResponses: "open-ai-responses"; readonly AnthropicMessages: "anthropic-messages"; }; /** * A public API accepted from an application client. */ export type GetResourceDeploymentDetailClientApi1 = ClosedEnum; export type GetResourceDeploymentDetailModel1 = { accessTest: AccessTest1; availability: AvailabilityEnum1; blockers: Array; clientApis: Array; errorCode?: string | null | undefined; publicModelId: string; testedAt?: Date | null | undefined; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export declare const SourceEnum1: { readonly AwsBedrock: "aws-bedrock"; readonly GcpVertex: "gcp-vertex"; readonly AzureFoundry: "azure-foundry"; readonly Anthropic: "anthropic"; }; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ export type SourceEnum1 = ClosedEnum; export type Availability1 = { catalogRevision: string; location?: string | null | undefined; models: Array; /** * Provider control plane used to observe model availability without invoking * * @remarks * a model, spending customer quota, or accepting provider terms. */ source: SourceEnum1; }; export declare const GetResourceDeploymentDetailReason66: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason66 = ClosedEnum; export declare const CollectionIssueSeverity66: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity66 = ClosedEnum; export type CollectionIssue66 = { message: string; reason: GetResourceDeploymentDetailReason66; severity: CollectionIssueSeverity66; source: string; }; export declare const Health66: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health66 = ClosedEnum; export declare const Lifecycle66: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle66 = ClosedEnum; export type DataStatus66 = { collectionIssues: Array; health: Health66; lifecycle: Lifecycle66; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsBedrock = { availability: Availability1; region: string; status: DataStatus66; backend: "awsBedrock"; }; export type DataUnion16 = DataAwsBedrock | DataGcpVertex | DataAzureFoundry | DataExternal; export type DataAi = { data: DataAwsBedrock | DataGcpVertex | DataAzureFoundry | DataExternal; resourceType: "ai"; }; export declare const GetResourceDeploymentDetailReason65: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason65 = ClosedEnum; export declare const CollectionIssueSeverity65: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity65 = ClosedEnum; export type CollectionIssue65 = { message: string; reason: GetResourceDeploymentDetailReason65; severity: CollectionIssueSeverity65; source: string; }; export declare const Health65: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health65 = ClosedEnum; export declare const Lifecycle65: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle65 = ClosedEnum; export type DataStatus65 = { collectionIssues: Array; health: Health65; lifecycle: Lifecycle65; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type Data5 = { createdAt?: string | null | undefined; disableLocalAuth?: boolean | null | undefined; location?: string | null | undefined; metricId?: string | null | undefined; minimumTlsVersion?: string | null | undefined; name: string; namespaceStatus?: string | null | undefined; premiumMessagingPartitions?: number | null | undefined; privateEndpointConnectionCount: number; provisioningState?: string | null | undefined; publicNetworkAccess?: string | null | undefined; resourceGroup?: string | null | undefined; resourceId?: string | null | undefined; serviceBusEndpoint?: string | null | undefined; skuCapacity?: number | null | undefined; skuName?: string | null | undefined; skuTier?: string | null | undefined; status: DataStatus65; updatedAt?: string | null | undefined; zoneRedundant?: boolean | null | undefined; }; export type DataAzureServiceBusNamespace = { data: Data5; resourceType: "azure_service_bus_namespace"; }; export declare const GetResourceDeploymentDetailReason64: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason64 = ClosedEnum; export declare const CollectionIssueSeverity64: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity64 = ClosedEnum; export type CollectionIssue64 = { message: string; reason: GetResourceDeploymentDetailReason64; severity: CollectionIssueSeverity64; source: string; }; export declare const Health64: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health64 = ClosedEnum; export declare const Lifecycle64: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle64 = ClosedEnum; export type DataStatus64 = { collectionIssues: Array; health: Health64; lifecycle: Lifecycle64; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type WorkloadProfile = { maximumCount?: number | null | undefined; minimumCount?: number | null | undefined; name: string; workloadProfileType: string; }; export type Data4 = { customDomainVerificationId?: string | null | undefined; defaultDomain?: string | null | undefined; eventStreamEndpoint?: string | null | undefined; infrastructureResourceGroup?: string | null | undefined; kind?: string | null | undefined; location?: string | null | undefined; name: string; provisioningState?: string | null | undefined; resourceGroup?: string | null | undefined; resourceId?: string | null | undefined; staticIp?: string | null | undefined; status: DataStatus64; workloadProfileCount: number; workloadProfiles: Array; zoneRedundant?: boolean | null | undefined; }; export type DataAzureContainerAppsEnvironment = { data: Data4; resourceType: "azure_container_apps_environment"; }; export type PrimaryEndpoints = { blob?: string | null | undefined; dfs?: string | null | undefined; file?: string | null | undefined; queue?: string | null | undefined; table?: string | null | undefined; web?: string | null | undefined; }; export type SecondaryEndpoints = { blob?: string | null | undefined; dfs?: string | null | undefined; file?: string | null | undefined; queue?: string | null | undefined; table?: string | null | undefined; web?: string | null | undefined; }; export declare const GetResourceDeploymentDetailReason63: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason63 = ClosedEnum; export declare const CollectionIssueSeverity63: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity63 = ClosedEnum; export type CollectionIssue63 = { message: string; reason: GetResourceDeploymentDetailReason63; severity: CollectionIssueSeverity63; source: string; }; export declare const Health63: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health63 = ClosedEnum; export declare const Lifecycle63: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle63 = ClosedEnum; export type DataStatus63 = { collectionIssues: Array; health: Health63; lifecycle: Lifecycle63; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type Data3 = { allowBlobPublicAccess?: boolean | null | undefined; allowSharedKeyAccess?: boolean | null | undefined; encryptionKeySource?: string | null | undefined; kind?: string | null | undefined; location?: string | null | undefined; minimumTlsVersion?: string | null | undefined; name: string; networkBypass?: string | null | undefined; networkDefaultAction?: string | null | undefined; networkIpRuleCount?: number | null | undefined; networkResourceAccessRuleCount?: number | null | undefined; networkVirtualNetworkRuleCount?: number | null | undefined; primaryEndpoints: PrimaryEndpoints; provisioningState?: string | null | undefined; publicNetworkAccess?: string | null | undefined; requireInfrastructureEncryption?: boolean | null | undefined; resourceGroup?: string | null | undefined; resourceId?: string | null | undefined; secondaryEndpoints: SecondaryEndpoints; skuName?: string | null | undefined; skuTier?: string | null | undefined; status: DataStatus63; supportsHttpsTrafficOnly?: boolean | null | undefined; }; export type DataAzureStorageAccount = { data: Data3; resourceType: "azure_storage_account"; }; export declare const GetResourceDeploymentDetailReason62: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason62 = ClosedEnum; export declare const CollectionIssueSeverity62: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity62 = ClosedEnum; export type CollectionIssue62 = { message: string; reason: GetResourceDeploymentDetailReason62; severity: CollectionIssueSeverity62; source: string; }; export declare const Health62: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health62 = ClosedEnum; export declare const Lifecycle62: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle62 = ClosedEnum; export type DataStatus62 = { collectionIssues: Array; health: Health62; lifecycle: Lifecycle62; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type Data2 = { location?: string | null | undefined; managedTags: { [k: string]: string; }; name: string; provisioningState?: string | null | undefined; resourceId?: string | null | undefined; status: DataStatus62; }; export type DataAzureResourceGroup = { data: Data2; resourceType: "azure_resource_group"; }; export declare const GetResourceDeploymentDetailReason61: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason61 = ClosedEnum; export declare const CollectionIssueSeverity61: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity61 = ClosedEnum; export type CollectionIssue61 = { message: string; reason: GetResourceDeploymentDetailReason61; severity: CollectionIssueSeverity61; source: string; }; export declare const Health61: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health61 = ClosedEnum; export declare const Lifecycle61: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle61 = ClosedEnum; export type DataStatus61 = { collectionIssues: Array; health: Health61; lifecycle: Lifecycle61; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureResourceProvider = { namespace: string; providerId?: string | null | undefined; registered: boolean; registrationPolicy?: string | null | undefined; registrationState?: string | null | undefined; resourceTypeCount: number; status: DataStatus61; backend: "azureResourceProvider"; }; export declare const GetResourceDeploymentDetailReason60: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason60 = ClosedEnum; export declare const CollectionIssueSeverity60: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity60 = ClosedEnum; export type CollectionIssue60 = { message: string; reason: GetResourceDeploymentDetailReason60; severity: CollectionIssueSeverity60; source: string; }; export declare const Health60: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health60 = ClosedEnum; export declare const Lifecycle60: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle60 = ClosedEnum; export type DataStatus60 = { collectionIssues: Array; health: Health60; lifecycle: Lifecycle60; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpServiceUsage = { enabled: boolean; lastOperationName?: string | null | undefined; projectId: string; serviceName: string; serviceResourceName?: string | null | undefined; state?: string | null | undefined; status: DataStatus60; title?: string | null | undefined; backend: "gcpServiceUsage"; }; export type DataUnion15 = DataGcpServiceUsage | DataAzureResourceProvider; export type DataServiceActivation = { data: DataGcpServiceUsage | DataAzureResourceProvider; resourceType: "service_activation"; }; export type InvolvedObject10 = { apiVersion?: string | null | undefined; fieldPath?: string | null | undefined; kind?: string | null | undefined; name?: string | null | undefined; namespace?: string | null | undefined; resourceVersion?: string | null | undefined; uid?: string | null | undefined; }; export type InvolvedObjectUnion10 = InvolvedObject10 | any; export type SourceEvent10 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion10 = SourceEvent10 | any; export type Event13 = { count?: number | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject10 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent10 | any | null | undefined; type?: string | null | undefined; }; export declare const GetResourceDeploymentDetailReason59: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason59 = ClosedEnum; export declare const CollectionIssueSeverity59: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity59 = ClosedEnum; export type CollectionIssue59 = { message: string; reason: GetResourceDeploymentDetailReason59; severity: CollectionIssueSeverity59; source: string; }; export declare const Health59: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health59 = ClosedEnum; export declare const Lifecycle59: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle59 = ClosedEnum; export type DataStatus59 = { collectionIssues: Array; health: Health59; lifecycle: Lifecycle59; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataKubernetesJob = { active?: number | null | undefined; completionTime?: Date | null | undefined; conditionCount: number; events: Array; failed?: number | null | undefined; imageDigest?: string | null | undefined; jobName: string; namespace: string; startTime?: Date | null | undefined; status: DataStatus59; succeeded?: number | null | undefined; backend: "kubernetesJob"; }; export declare const GetResourceDeploymentDetailReason58: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason58 = ClosedEnum; export declare const CollectionIssueSeverity58: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity58 = ClosedEnum; export type CollectionIssue58 = { message: string; reason: GetResourceDeploymentDetailReason58; severity: CollectionIssueSeverity58; source: string; }; export declare const Health58: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health58 = ClosedEnum; export declare const Lifecycle58: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle58 = ClosedEnum; export type DataStatus58 = { collectionIssues: Array; health: Health58; lifecycle: Lifecycle58; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureContainerApps2 = { environmentVariableCount: number; managedEnvironmentId: string; managedIdentityId?: string | null | undefined; resourceGroupName: string; resourcePrefix?: string | null | undefined; status: DataStatus58; backend: "azureContainerApps"; }; export declare const GetResourceDeploymentDetailReason57: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason57 = ClosedEnum; export declare const CollectionIssueSeverity57: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity57 = ClosedEnum; export type CollectionIssue57 = { message: string; reason: GetResourceDeploymentDetailReason57; severity: CollectionIssueSeverity57; source: string; }; export declare const Health57: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health57 = ClosedEnum; export declare const Lifecycle57: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle57 = ClosedEnum; export type DataStatus57 = { collectionIssues: Array; health: Health57; lifecycle: Lifecycle57; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpCloudBuild = { buildConfigId: string; environmentVariableCount: number; location: string; projectId: string; serviceAccount?: string | null | undefined; status: DataStatus57; backend: "gcpCloudBuild"; }; export declare const GetResourceDeploymentDetailReason56: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason56 = ClosedEnum; export declare const CollectionIssueSeverity56: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity56 = ClosedEnum; export type CollectionIssue56 = { message: string; reason: GetResourceDeploymentDetailReason56; severity: CollectionIssueSeverity56; source: string; }; export declare const Health56: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health56 = ClosedEnum; export declare const Lifecycle56: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle56 = ClosedEnum; export type DataStatus56 = { collectionIssues: Array; health: Health56; lifecycle: Lifecycle56; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsCodeBuild = { artifactsEncryptionDisabled?: boolean | null | undefined; artifactsType?: string | null | undefined; cloudWatchLogsStatus?: string | null | undefined; computeType?: string | null | undefined; created?: number | null | undefined; description?: string | null | undefined; encryptionKeyPresent: boolean; environmentImage?: string | null | undefined; environmentType?: string | null | undefined; environmentVariableCount: number; imagePullCredentialsType?: string | null | undefined; lastModified?: number | null | undefined; privilegedMode?: boolean | null | undefined; projectArn?: string | null | undefined; projectName: string; queuedTimeoutInMinutes?: number | null | undefined; s3LogsStatus?: string | null | undefined; serviceRolePresent: boolean; sourceType?: string | null | undefined; status: DataStatus56; timeoutInMinutes?: number | null | undefined; backend: "awsCodeBuild"; }; export type DataUnion14 = DataAwsCodeBuild | DataGcpCloudBuild | DataAzureContainerApps2 | DataKubernetesJob; export type DataBuild = { data: DataAwsCodeBuild | DataGcpCloudBuild | DataAzureContainerApps2 | DataKubernetesJob; resourceType: "build"; }; export declare const GetResourceDeploymentDetailReason55: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason55 = ClosedEnum; export declare const CollectionIssueSeverity55: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity55 = ClosedEnum; export type CollectionIssue55 = { message: string; reason: GetResourceDeploymentDetailReason55; severity: CollectionIssueSeverity55; source: string; }; export declare const Health55: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health55 = ClosedEnum; export declare const Lifecycle55: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle55 = ClosedEnum; export type DataStatus55 = { collectionIssues: Array; health: Health55; lifecycle: Lifecycle55; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal11 = { reachable: boolean; registryUrl: string; status: DataStatus55; backend: "local"; }; export declare const GetResourceDeploymentDetailReason54: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason54 = ClosedEnum; export declare const CollectionIssueSeverity54: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity54 = ClosedEnum; export type CollectionIssue54 = { message: string; reason: GetResourceDeploymentDetailReason54; severity: CollectionIssueSeverity54; source: string; }; export declare const Health54: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health54 = ClosedEnum; export declare const Lifecycle54: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle54 = ClosedEnum; export type DataStatus54 = { collectionIssues: Array; health: Health54; lifecycle: Lifecycle54; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureContainerRegistry = { adminUserEnabled: boolean; anonymousPullEnabled: boolean; creationDate?: string | null | undefined; dataEndpointEnabled?: boolean | null | undefined; dataEndpointHostNames: Array; encryptionKeyIdentifierPresent: boolean; encryptionKeyVaultUriPresent: boolean; encryptionStatus?: string | null | undefined; ipRuleCount: number; location: string; loginServer?: string | null | undefined; managedTagCount: number; name: string; networkRuleBypassOptions: string; networkRuleDefaultAction?: string | null | undefined; policiesPresent: boolean; policyCount: number; privateEndpointConnectionCount: number; provisioningState?: string | null | undefined; publicNetworkAccess: string; resourceGroup: string; resourceId?: string | null | undefined; skuName: string; skuTier?: string | null | undefined; status: DataStatus54; type?: string | null | undefined; zoneRedundancy: string; backend: "azureContainerRegistry"; }; export declare const GetResourceDeploymentDetailReason53: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason53 = ClosedEnum; export declare const CollectionIssueSeverity53: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity53 = ClosedEnum; export type CollectionIssue53 = { message: string; reason: GetResourceDeploymentDetailReason53; severity: CollectionIssueSeverity53; source: string; }; export declare const Health53: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health53 = ClosedEnum; export declare const Lifecycle53: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle53 = ClosedEnum; export type DataStatus53 = { collectionIssues: Array; health: Health53; lifecycle: Lifecycle53; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpArtifactRegistry = { cleanupPolicyCount: number; cleanupPolicyDryRun?: boolean | null | undefined; createTime?: string | null | undefined; description?: string | null | undefined; format?: string | null | undefined; iamBindingCount: number; iamPolicyEtagPresent: boolean; iamRoles: Array; kmsKeyNamePresent: boolean; labelCount: number; location: string; mode?: string | null | undefined; name?: string | null | undefined; projectId: string; pullServiceAccountEmail?: string | null | undefined; pushServiceAccountEmail?: string | null | undefined; repositoryId: string; satisfiesPzs?: boolean | null | undefined; sizeBytes?: string | null | undefined; status: DataStatus53; updateTime?: string | null | undefined; backend: "gcpArtifactRegistry"; }; export type GetResourceDeploymentDetailRepository = { createdAt: number; encryptionType?: string | null | undefined; imageTagMutability?: string | null | undefined; kmsKeyPresent: boolean; registryId: string; repositoryArn: string; repositoryName: string; repositoryUri: string; scanOnPush?: boolean | null | undefined; }; export declare const GetResourceDeploymentDetailReason52: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason52 = ClosedEnum; export declare const CollectionIssueSeverity52: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity52 = ClosedEnum; export type CollectionIssue52 = { message: string; reason: GetResourceDeploymentDetailReason52; severity: CollectionIssueSeverity52; source: string; }; export declare const Health52: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health52 = ClosedEnum; export declare const Lifecycle52: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle52 = ClosedEnum; export type DataStatus52 = { collectionIssues: Array; health: Health52; lifecycle: Lifecycle52; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsEcr = { pullRoleArn?: string | null | undefined; pushRoleArn?: string | null | undefined; region: string; registryId: string; registryUri: string; repositories: Array; repositoriesTruncated: boolean; repositoryCount: number; repositoryPrefix: string; status: DataStatus52; backend: "awsEcr"; }; export type DataUnion13 = DataAwsEcr | DataGcpArtifactRegistry | DataAzureContainerRegistry | DataLocal11; export type DataArtifactRegistry = { data: DataAwsEcr | DataGcpArtifactRegistry | DataAzureContainerRegistry | DataLocal11; resourceType: "artifact-registry"; }; export declare const GetResourceDeploymentDetailReason51: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason51 = ClosedEnum; export declare const CollectionIssueSeverity51: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity51 = ClosedEnum; export type CollectionIssue51 = { message: string; reason: GetResourceDeploymentDetailReason51; severity: CollectionIssueSeverity51; source: string; }; export declare const Health51: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health51 = ClosedEnum; export declare const Lifecycle51: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle51 = ClosedEnum; export type DataStatus51 = { collectionIssues: Array; health: Health51; lifecycle: Lifecycle51; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureManagedIdentity2 = { ficName?: string | null | undefined; roleAssignmentIds: Array; roleDefinitionId?: string | null | undefined; status: DataStatus51; tenantId?: string | null | undefined; uamiClientId?: string | null | undefined; uamiPrincipalId?: string | null | undefined; uamiResourceId?: string | null | undefined; backend: "azureManagedIdentity"; }; export declare const GetResourceDeploymentDetailReason50: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason50 = ClosedEnum; export declare const CollectionIssueSeverity50: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity50 = ClosedEnum; export type CollectionIssue50 = { message: string; reason: GetResourceDeploymentDetailReason50; severity: CollectionIssueSeverity50; source: string; }; export declare const Health50: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health50 = ClosedEnum; export declare const Lifecycle50: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle50 = ClosedEnum; export type DataStatus50 = { collectionIssues: Array; health: Health50; lifecycle: Lifecycle50; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpServiceAccount2 = { impersonationGranted: boolean; roleBound: boolean; serviceAccountEmail?: string | null | undefined; serviceAccountUniqueId?: string | null | undefined; status: DataStatus50; backend: "gcpServiceAccount"; }; export declare const GetResourceDeploymentDetailReason49: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason49 = ClosedEnum; export declare const CollectionIssueSeverity49: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity49 = ClosedEnum; export type CollectionIssue49 = { message: string; reason: GetResourceDeploymentDetailReason49; severity: CollectionIssueSeverity49; source: string; }; export declare const Health49: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health49 = ClosedEnum; export declare const Lifecycle49: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle49 = ClosedEnum; export type DataStatus49 = { collectionIssues: Array; health: Health49; lifecycle: Lifecycle49; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsIamRole2 = { managementPermissionsApplied: boolean; roleArn?: string | null | undefined; roleName?: string | null | undefined; status: DataStatus49; backend: "awsIamRole"; }; export type DataUnion12 = DataAwsIamRole2 | DataGcpServiceAccount2 | DataAzureManagedIdentity2; export type DataRemoteStackManagement = { data: DataAwsIamRole2 | DataGcpServiceAccount2 | DataAzureManagedIdentity2; resourceType: "remote-stack-management"; }; export declare const GetResourceDeploymentDetailReason48: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason48 = ClosedEnum; export declare const CollectionIssueSeverity48: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity48 = ClosedEnum; export type CollectionIssue48 = { message: string; reason: GetResourceDeploymentDetailReason48; severity: CollectionIssueSeverity48; source: string; }; export declare const Health48: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health48 = ClosedEnum; export declare const Lifecycle48: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle48 = ClosedEnum; export type DataStatus48 = { collectionIssues: Array; health: Health48; lifecycle: Lifecycle48; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureVnet = { applicationGatewaySubnetName?: string | null | undefined; cidrBlock?: string | null | undefined; isByoVnet: boolean; lastByoVnetVerificationErrorCode?: string | null | undefined; location?: string | null | undefined; natGatewayId?: string | null | undefined; nsgId?: string | null | undefined; privateEndpointSubnetName?: string | null | undefined; privateSubnetName?: string | null | undefined; publicIpId?: string | null | undefined; publicSubnetName?: string | null | undefined; resourceGroup?: string | null | undefined; status: DataStatus48; vnetName?: string | null | undefined; vnetResourceId?: string | null | undefined; backend: "azureVnet"; }; export declare const GetResourceDeploymentDetailReason47: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason47 = ClosedEnum; export declare const CollectionIssueSeverity47: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity47 = ClosedEnum; export type CollectionIssue47 = { message: string; reason: GetResourceDeploymentDetailReason47; severity: CollectionIssueSeverity47; source: string; }; export declare const Health47: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health47 = ClosedEnum; export declare const Lifecycle47: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle47 = ClosedEnum; export type DataStatus47 = { collectionIssues: Array; health: Health47; lifecycle: Lifecycle47; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpVpc = { cidrBlock?: string | null | undefined; cloudNatName?: string | null | undefined; firewallName?: string | null | undefined; isByoVpc: boolean; networkName?: string | null | undefined; networkSelfLink?: string | null | undefined; region?: string | null | undefined; routerName?: string | null | undefined; status: DataStatus47; subnetworkName?: string | null | undefined; subnetworkSelfLink?: string | null | undefined; backend: "gcpVpc"; }; export declare const GetResourceDeploymentDetailReason46: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason46 = ClosedEnum; export declare const CollectionIssueSeverity46: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity46 = ClosedEnum; export type CollectionIssue46 = { message: string; reason: GetResourceDeploymentDetailReason46; severity: CollectionIssueSeverity46; source: string; }; export declare const Health46: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health46 = ClosedEnum; export declare const Lifecycle46: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle46 = ClosedEnum; export type DataStatus46 = { collectionIssues: Array; health: Health46; lifecycle: Lifecycle46; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsVpc = { availabilityZones: Array; cidrBlock?: string | null | undefined; internetGatewayId?: string | null | undefined; isByoVpc: boolean; natGatewayId?: string | null | undefined; privateSubnetIds: Array; publicSubnetIds: Array; routeTableCount: number; securityGroupId?: string | null | undefined; status: DataStatus46; vpcId?: string | null | undefined; vpcState?: string | null | undefined; backend: "awsVpc"; }; export type DataUnion11 = DataAwsVpc | DataGcpVpc | DataAzureVnet; export type DataNetwork = { data: DataAwsVpc | DataGcpVpc | DataAzureVnet; resourceType: "network"; }; export declare const GetResourceDeploymentDetailReason45: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason45 = ClosedEnum; export declare const CollectionIssueSeverity45: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity45 = ClosedEnum; export type CollectionIssue45 = { message: string; reason: GetResourceDeploymentDetailReason45; severity: CollectionIssueSeverity45; source: string; }; export declare const Health45: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health45 = ClosedEnum; export declare const Lifecycle45: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle45 = ClosedEnum; export type DataStatus45 = { collectionIssues: Array; health: Health45; lifecycle: Lifecycle45; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal10 = { configured: boolean; identity: string; status: DataStatus45; backend: "local"; }; export declare const GetResourceDeploymentDetailReason44: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason44 = ClosedEnum; export declare const CollectionIssueSeverity44: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity44 = ClosedEnum; export type CollectionIssue44 = { message: string; reason: GetResourceDeploymentDetailReason44; severity: CollectionIssueSeverity44; source: string; }; export declare const Health44: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health44 = ClosedEnum; export declare const Lifecycle44: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle44 = ClosedEnum; export type DataStatus44 = { collectionIssues: Array; health: Health44; lifecycle: Lifecycle44; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureManagedIdentity1 = { clientId?: string | null | undefined; customRoleDefinitionCount: number; customRoleDefinitionIds: Array; isolationScope?: string | null | undefined; location: string; managedTagCount: number; name: string; principalId?: string | null | undefined; resourceGroup: string; resourceId: string; roleAssignmentCount: number; roleAssignmentIds: Array; stackPermissionsApplied: boolean; status: DataStatus44; tenantId?: string | null | undefined; type?: string | null | undefined; backend: "azureManagedIdentity"; }; export declare const GetResourceDeploymentDetailReason43: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason43 = ClosedEnum; export declare const CollectionIssueSeverity43: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity43 = ClosedEnum; export type CollectionIssue43 = { message: string; reason: GetResourceDeploymentDetailReason43; severity: CollectionIssueSeverity43; source: string; }; export declare const Health43: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health43 = ClosedEnum; export declare const Lifecycle43: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle43 = ClosedEnum; export type DataStatus43 = { collectionIssues: Array; health: Health43; lifecycle: Lifecycle43; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpServiceAccount1 = { description?: string | null | undefined; disabled?: boolean | null | undefined; displayName?: string | null | undefined; email: string; etag?: string | null | undefined; name?: string | null | undefined; oauth2ClientId?: string | null | undefined; projectBindingCount: number; projectId?: string | null | undefined; projectRoles: Array; serviceAccountBindingCount: number; serviceAccountRoles: Array; status: DataStatus43; uniqueId?: string | null | undefined; backend: "gcpServiceAccount"; }; export declare const GetResourceDeploymentDetailReason42: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason42 = ClosedEnum; export declare const CollectionIssueSeverity42: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity42 = ClosedEnum; export type CollectionIssue42 = { message: string; reason: GetResourceDeploymentDetailReason42; severity: CollectionIssueSeverity42; source: string; }; export declare const Health42: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health42 = ClosedEnum; export declare const Lifecycle42: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle42 = ClosedEnum; export type DataStatus42 = { collectionIssues: Array; health: Health42; lifecycle: Lifecycle42; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsIamRole1 = { assumeRolePolicyPresent: boolean; attachedPolicyCount: number; attachedPolicyNames: Array; createDate: string; description?: string | null | undefined; inlinePolicyCount: number; inlinePolicyNames: Array; lastUsedDate?: string | null | undefined; lastUsedRegion?: string | null | undefined; managedTagCount: number; maxSessionDuration?: number | null | undefined; path: string; permissionsBoundaryArn?: string | null | undefined; permissionsBoundaryType?: string | null | undefined; roleArn: string; roleId: string; roleName: string; stackPermissionsApplied: boolean; status: DataStatus42; tagCount: number; backend: "awsIamRole"; }; export type DataUnion10 = DataAwsIamRole1 | DataGcpServiceAccount1 | DataAzureManagedIdentity1 | DataLocal10; export type DataServiceAccount = { data: DataAwsIamRole1 | DataGcpServiceAccount1 | DataAzureManagedIdentity1 | DataLocal10; resourceType: "service-account"; }; export declare const GetResourceDeploymentDetailReason41: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason41 = ClosedEnum; export declare const CollectionIssueSeverity41: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity41 = ClosedEnum; export type CollectionIssue41 = { message: string; reason: GetResourceDeploymentDetailReason41; severity: CollectionIssueSeverity41; source: string; }; export declare const Health41: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health41 = ClosedEnum; export declare const Lifecycle41: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle41 = ClosedEnum; export type DataStatus41 = { collectionIssues: Array; health: Health41; lifecycle: Lifecycle41; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal9 = { isDirectory?: boolean | null | undefined; modifiedAt?: Date | null | undefined; path: string; pathExists: boolean; readonly?: boolean | null | undefined; secretMetadataListed: boolean; status: DataStatus41; backend: "local"; }; export declare const GetResourceDeploymentDetailReason40: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason40 = ClosedEnum; export declare const CollectionIssueSeverity40: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity40 = ClosedEnum; export type CollectionIssue40 = { message: string; reason: GetResourceDeploymentDetailReason40; severity: CollectionIssueSeverity40; source: string; }; export declare const Health40: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health40 = ClosedEnum; export declare const Lifecycle40: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle40 = ClosedEnum; export type DataStatus40 = { collectionIssues: Array; health: Health40; lifecycle: Lifecycle40; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataKubernetesSecret = { namespace: string; prefix: string; secretMetadataListed: boolean; status: DataStatus40; backend: "kubernetesSecret"; }; export declare const GetResourceDeploymentDetailReason39: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason39 = ClosedEnum; export declare const CollectionIssueSeverity39: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity39 = ClosedEnum; export type CollectionIssue39 = { message: string; reason: GetResourceDeploymentDetailReason39; severity: CollectionIssueSeverity39; source: string; }; export declare const Health39: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health39 = ClosedEnum; export declare const Lifecycle39: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle39 = ClosedEnum; export type DataStatus39 = { collectionIssues: Array; health: Health39; lifecycle: Lifecycle39; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureKeyVault1 = { accessPolicyCount: number; location?: string | null | undefined; name: string; privateEndpointConnectionCount: number; provisioningState?: string | null | undefined; publicNetworkAccess: string; purgeProtectionEnabled?: boolean | null | undefined; rbacAuthorizationEnabled: boolean; resourceGroup?: string | null | undefined; resourceId?: string | null | undefined; secretMetadataListed: boolean; skuFamily?: string | null | undefined; skuName?: string | null | undefined; softDeleteEnabled: boolean; softDeleteRetentionDays: number; status: DataStatus39; vaultUri?: string | null | undefined; backend: "azureKeyVault"; }; export declare const GetResourceDeploymentDetailReason38: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason38 = ClosedEnum; export declare const CollectionIssueSeverity38: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity38 = ClosedEnum; export type CollectionIssue38 = { message: string; reason: GetResourceDeploymentDetailReason38; severity: CollectionIssueSeverity38; source: string; }; export declare const Health38: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health38 = ClosedEnum; export declare const Lifecycle38: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle38 = ClosedEnum; export type DataStatus38 = { collectionIssues: Array; health: Health38; lifecycle: Lifecycle38; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpSecretManager = { location: string; prefix: string; projectId: string; secretMetadataListed: boolean; status: DataStatus38; backend: "gcpSecretManager"; }; export declare const GetResourceDeploymentDetailReason37: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason37 = ClosedEnum; export declare const CollectionIssueSeverity37: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity37 = ClosedEnum; export type CollectionIssue37 = { message: string; reason: GetResourceDeploymentDetailReason37; severity: CollectionIssueSeverity37; source: string; }; export declare const Health37: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health37 = ClosedEnum; export declare const Lifecycle37: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle37 = ClosedEnum; export type DataStatus37 = { collectionIssues: Array; health: Health37; lifecycle: Lifecycle37; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsParameterStore = { accountId: string; hasMoreParameters?: boolean | null | undefined; latestModifiedAt?: Date | null | undefined; parameterMetadataSampled: boolean; prefix: string; region: string; sampledAdvancedTierCount?: number | null | undefined; sampledKmsKeyMetadataPresentCount?: number | null | undefined; sampledParameterCount?: number | null | undefined; sampledSecureStringCount?: number | null | undefined; sampledStringCount?: number | null | undefined; sampledStringListCount?: number | null | undefined; status: DataStatus37; backend: "awsParameterStore"; }; export type DataUnion9 = DataAwsParameterStore | DataGcpSecretManager | DataAzureKeyVault1 | DataKubernetesSecret | DataLocal9; export type DataVault = { data: DataAwsParameterStore | DataGcpSecretManager | DataAzureKeyVault1 | DataKubernetesSecret | DataLocal9; resourceType: "vault"; }; export declare const GetResourceDeploymentDetailReason36: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason36 = ClosedEnum; export declare const CollectionIssueSeverity36: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity36 = ClosedEnum; export type CollectionIssue36 = { message: string; reason: GetResourceDeploymentDetailReason36; severity: CollectionIssueSeverity36; source: string; }; export declare const Health36: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health36 = ClosedEnum; export declare const Lifecycle36: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle36 = ClosedEnum; export type DataStatus36 = { collectionIssues: Array; health: Health36; lifecycle: Lifecycle36; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * Local embedded Postgres backend. */ export type DataLocal8 = { name: string; port?: number | null | undefined; processRunning: boolean; status: DataStatus36; version: string; backend: "local"; }; export declare const GetResourceDeploymentDetailReason35: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason35 = ClosedEnum; export declare const CollectionIssueSeverity35: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity35 = ClosedEnum; export type CollectionIssue35 = { message: string; reason: GetResourceDeploymentDetailReason35; severity: CollectionIssueSeverity35; source: string; }; export declare const Health35: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health35 = ClosedEnum; export declare const Lifecycle35: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle35 = ClosedEnum; export type DataStatus35 = { collectionIssues: Array; health: Health35; lifecycle: Lifecycle35; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * Azure Flexible Server backend. */ export type DataFlexibleServer = { serverName: string; state?: string | null | undefined; status: DataStatus35; version?: string | null | undefined; backend: "flexibleServer"; }; export declare const GetResourceDeploymentDetailReason34: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason34 = ClosedEnum; export declare const CollectionIssueSeverity34: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity34 = ClosedEnum; export type CollectionIssue34 = { message: string; reason: GetResourceDeploymentDetailReason34; severity: CollectionIssueSeverity34; source: string; }; export declare const Health34: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health34 = ClosedEnum; export declare const Lifecycle34: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle34 = ClosedEnum; export type DataStatus34 = { collectionIssues: Array; health: Health34; lifecycle: Lifecycle34; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * GCP Cloud SQL backend. */ export type DataCloudSQL = { databaseVersion?: string | null | undefined; instanceName: string; state?: string | null | undefined; status: DataStatus34; backend: "cloudSql"; }; export declare const GetResourceDeploymentDetailReason33: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason33 = ClosedEnum; export declare const CollectionIssueSeverity33: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity33 = ClosedEnum; export type CollectionIssue33 = { message: string; reason: GetResourceDeploymentDetailReason33; severity: CollectionIssueSeverity33; source: string; }; export declare const Health33: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health33 = ClosedEnum; export declare const Lifecycle33: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle33 = ClosedEnum; export type DataStatus33 = { collectionIssues: Array; health: Health33; lifecycle: Lifecycle33; message?: string | null | undefined; partial: boolean; stale: boolean; }; /** * AWS Aurora Serverless v2 backend. */ export type DataAurora = { clusterIdentifier: string; endpoint?: string | null | undefined; engineVersion?: string | null | undefined; /** * True when a `minCapacity: 0` instance has not reached 0 ACU over the observation * * @remarks * window — it is silently paying always-on prices (auto-pause verification). */ neverPauses: boolean; /** * Latest sampled `ServerlessDatabaseCapacity` (ACU). */ serverlessCapacity?: number | null | undefined; status: DataStatus33; backend: "aurora"; }; export type DataUnion8 = DataAurora | DataCloudSQL | DataFlexibleServer | DataLocal8; export type DataPostgres = { data: DataAurora | DataCloudSQL | DataFlexibleServer | DataLocal8; resourceType: "postgres"; }; export declare const GetResourceDeploymentDetailReason32: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason32 = ClosedEnum; export declare const CollectionIssueSeverity32: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity32 = ClosedEnum; export type CollectionIssue32 = { message: string; reason: GetResourceDeploymentDetailReason32; severity: CollectionIssueSeverity32; source: string; }; export declare const Health32: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health32 = ClosedEnum; export declare const Lifecycle32: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle32 = ClosedEnum; export type DataStatus32 = { collectionIssues: Array; health: Health32; lifecycle: Lifecycle32; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal7 = { cloudMetadataSupported: boolean; isDirectory?: boolean | null | undefined; name: string; path: string; pathExists: boolean; status: DataStatus32; backend: "local"; }; export declare const GetResourceDeploymentDetailReason31: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason31 = ClosedEnum; export declare const CollectionIssueSeverity31: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity31 = ClosedEnum; export type CollectionIssue31 = { message: string; reason: GetResourceDeploymentDetailReason31; severity: CollectionIssueSeverity31; source: string; }; export declare const Health31: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health31 = ClosedEnum; export declare const Lifecycle31: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle31 = ClosedEnum; export type DataStatus31 = { collectionIssues: Array; health: Health31; lifecycle: Lifecycle31; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureTable = { endpoint?: string | null | undefined; resourceGroup?: string | null | undefined; signedIdentifierCount?: number | null | undefined; status: DataStatus31; storageAccountKind?: string | null | undefined; storageAccountLocation?: string | null | undefined; storageAccountName: string; storageAccountPrimaryStatus?: string | null | undefined; storageAccountProvisioningState?: string | null | undefined; storageAccountResourceId?: string | null | undefined; tableExists: boolean; tableName: string; backend: "azureTable"; }; export declare const GetResourceDeploymentDetailReason30: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason30 = ClosedEnum; export declare const CollectionIssueSeverity30: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity30 = ClosedEnum; export type CollectionIssue30 = { message: string; reason: GetResourceDeploymentDetailReason30; severity: CollectionIssueSeverity30; source: string; }; export declare const Health30: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health30 = ClosedEnum; export declare const Lifecycle30: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle30 = ClosedEnum; export type DataStatus30 = { collectionIssues: Array; health: Health30; lifecycle: Lifecycle30; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpFirestore = { appEngineIntegrationMode?: string | null | undefined; cmekEnabled: boolean; concurrencyMode?: string | null | undefined; createTime?: string | null | undefined; databaseEdition?: string | null | undefined; databaseName: string; databaseType?: string | null | undefined; deleteProtectionState?: string | null | undefined; deleteTime?: string | null | undefined; earliestVersionTime?: string | null | undefined; endpoint?: string | null | undefined; locationId?: string | null | undefined; pointInTimeRecoveryEnablement?: string | null | undefined; projectId?: string | null | undefined; sourceInfoPresent: boolean; status: DataStatus30; updateTime?: string | null | undefined; versionRetentionPeriod?: string | null | undefined; backend: "gcpFirestore"; }; export type KeySchema = { attributeName: string; keyType: string; }; export declare const GetResourceDeploymentDetailReason29: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason29 = ClosedEnum; export declare const CollectionIssueSeverity29: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity29 = ClosedEnum; export type CollectionIssue29 = { message: string; reason: GetResourceDeploymentDetailReason29; severity: CollectionIssueSeverity29; source: string; }; export declare const Health29: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health29 = ClosedEnum; export declare const Lifecycle29: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle29 = ClosedEnum; export type DataStatus29 = { collectionIssues: Array; health: Health29; lifecycle: Lifecycle29; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsDynamoDb = { billingMode?: string | null | undefined; deletionProtectionEnabled?: boolean | null | undefined; globalSecondaryIndexCount?: number | null | undefined; itemCount?: number | null | undefined; keySchema: Array; localSecondaryIndexCount?: number | null | undefined; name: string; region?: string | null | undefined; replicaCount?: number | null | undefined; restoreInProgress?: boolean | null | undefined; sseStatus?: string | null | undefined; sseType?: string | null | undefined; status: DataStatus29; streamEnabled?: boolean | null | undefined; streamViewType?: string | null | undefined; tableArn?: string | null | undefined; tableClass?: string | null | undefined; tableSizeBytes?: number | null | undefined; tableStatus?: string | null | undefined; ttlAttributeName?: string | null | undefined; ttlStatus?: string | null | undefined; backend: "awsDynamoDb"; }; export type DataUnion7 = DataAwsDynamoDb | DataGcpFirestore | DataAzureTable | DataLocal7; export type DataKv = { data: DataAwsDynamoDb | DataGcpFirestore | DataAzureTable | DataLocal7; resourceType: "kv"; }; export declare const GetResourceDeploymentDetailReason28: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason28 = ClosedEnum; export declare const CollectionIssueSeverity28: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity28 = ClosedEnum; export type CollectionIssue28 = { message: string; reason: GetResourceDeploymentDetailReason28; severity: CollectionIssueSeverity28; source: string; }; export declare const Health28: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health28 = ClosedEnum; export declare const Lifecycle28: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle28 = ClosedEnum; export type DataStatus28 = { collectionIssues: Array; health: Health28; lifecycle: Lifecycle28; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal6 = { name: string; path?: string | null | undefined; serviceStatus?: string | null | undefined; status: DataStatus28; backend: "local"; }; export declare const GetResourceDeploymentDetailReason27: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason27 = ClosedEnum; export declare const CollectionIssueSeverity27: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity27 = ClosedEnum; export type CollectionIssue27 = { message: string; reason: GetResourceDeploymentDetailReason27; severity: CollectionIssueSeverity27; source: string; }; export declare const Health27: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health27 = ClosedEnum; export declare const Lifecycle27: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle27 = ClosedEnum; export type DataStatus27 = { collectionIssues: Array; health: Health27; lifecycle: Lifecycle27; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureServiceBus = { accessedAt?: string | null | undefined; activeMessageCount?: number | null | undefined; autoDeleteOnIdle?: string | null | undefined; createdAt?: string | null | undefined; deadLetterMessageCount?: number | null | undefined; deadLetteringOnMessageExpiration?: boolean | null | undefined; defaultMessageTimeToLive?: string | null | undefined; duplicateDetectionHistoryTimeWindow?: string | null | undefined; enableBatchedOperations?: boolean | null | undefined; enableExpress?: boolean | null | undefined; enablePartitioning?: boolean | null | undefined; endpoint?: string | null | undefined; forwardDeadLetteredMessagesTo?: string | null | undefined; forwardTo?: string | null | undefined; lockDuration?: string | null | undefined; maxDeliveryCount?: number | null | undefined; maxMessageSizeInKilobytes?: number | null | undefined; maxSizeInMegabytes?: number | null | undefined; messageCount?: number | null | undefined; name: string; namespaceName: string; queueStatus?: string | null | undefined; requiresDuplicateDetection?: boolean | null | undefined; requiresSession?: boolean | null | undefined; resourceGroup?: string | null | undefined; resourceId?: string | null | undefined; scheduledMessageCount?: number | null | undefined; sizeInBytes?: number | null | undefined; status: DataStatus27; transferDeadLetterMessageCount?: number | null | undefined; transferMessageCount?: number | null | undefined; updatedAt?: string | null | undefined; backend: "azureServiceBus"; }; export declare const GetResourceDeploymentDetailReason26: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason26 = ClosedEnum; export declare const CollectionIssueSeverity26: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity26 = ClosedEnum; export type CollectionIssue26 = { message: string; reason: GetResourceDeploymentDetailReason26; severity: CollectionIssueSeverity26; source: string; }; export declare const Health26: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health26 = ClosedEnum; export declare const Lifecycle26: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle26 = ClosedEnum; export type DataStatus26 = { collectionIssues: Array; health: Health26; lifecycle: Lifecycle26; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpPubSub = { endpoint?: string | null | undefined; kmsKeyName?: string | null | undefined; messageStorageAllowedPersistenceRegions: Array; messageStorageEnforceInTransit?: boolean | null | undefined; projectId?: string | null | undefined; schemaEncoding?: string | null | undefined; schemaFirstRevisionId?: string | null | undefined; schemaLastRevisionId?: string | null | undefined; schemaName?: string | null | undefined; status: DataStatus26; subscriptionAckDeadlineSeconds?: number | null | undefined; subscriptionDeadLetterMaxDeliveryAttempts?: number | null | undefined; subscriptionDeadLetterTopic?: string | null | undefined; subscriptionDetached?: boolean | null | undefined; subscriptionEnableMessageOrdering?: boolean | null | undefined; subscriptionFilter?: string | null | undefined; subscriptionFullName?: string | null | undefined; subscriptionLabels: { [k: string]: string; }; subscriptionMessageRetentionDuration?: string | null | undefined; subscriptionName?: string | null | undefined; subscriptionPushAttributes: { [k: string]: string; }; subscriptionPushConfigPresent?: boolean | null | undefined; subscriptionPushEndpoint?: string | null | undefined; subscriptionPushNoWrapperWriteMetadata?: boolean | null | undefined; subscriptionPushOidcAudience?: string | null | undefined; subscriptionPushOidcServiceAccountEmail?: string | null | undefined; subscriptionPushPubsubWrapperWriteMetadata?: boolean | null | undefined; subscriptionRetainAckedMessages?: boolean | null | undefined; subscriptionState?: string | null | undefined; topicFullName?: string | null | undefined; topicLabels: { [k: string]: string; }; topicMessageRetentionDuration?: string | null | undefined; topicName: string; topicState?: string | null | undefined; backend: "gcpPubSub"; }; export declare const GetResourceDeploymentDetailReason25: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason25 = ClosedEnum; export declare const CollectionIssueSeverity25: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity25 = ClosedEnum; export type CollectionIssue25 = { message: string; reason: GetResourceDeploymentDetailReason25; severity: CollectionIssueSeverity25; source: string; }; export declare const Health25: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health25 = ClosedEnum; export declare const Lifecycle25: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle25 = ClosedEnum; export type DataStatus25 = { collectionIssues: Array; health: Health25; lifecycle: Lifecycle25; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsSqs = { approximateCounts: boolean; approximateDelayedMessages?: number | null | undefined; approximateInFlightMessages?: number | null | undefined; approximateVisibleMessages?: number | null | undefined; contentBasedDeduplication?: boolean | null | undefined; deduplicationScope?: string | null | undefined; delaySeconds?: number | null | undefined; fifoQueue?: boolean | null | undefined; fifoThroughputLimit?: string | null | undefined; kmsDataKeyReusePeriodSeconds?: number | null | undefined; kmsMasterKeyId?: string | null | undefined; maximumMessageSize?: number | null | undefined; messageRetentionPeriodSeconds?: number | null | undefined; name: string; queueArn?: string | null | undefined; queueUrl?: string | null | undefined; receiveMessageWaitTimeSeconds?: number | null | undefined; redriveAllowPolicy?: string | null | undefined; redrivePolicy?: string | null | undefined; region?: string | null | undefined; sqsManagedSseEnabled?: boolean | null | undefined; sseEnabled?: boolean | null | undefined; status: DataStatus25; visibilityTimeoutSeconds?: number | null | undefined; backend: "awsSqs"; }; export type DataUnion6 = DataAwsSqs | DataGcpPubSub | DataAzureServiceBus | DataLocal6; export type DataQueue = { data: DataAwsSqs | DataGcpPubSub | DataAzureServiceBus | DataLocal6; resourceType: "queue"; }; export declare const CpuUnit11: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit11 = ClosedEnum; export type Cpu11 = { unit: CpuUnit11; value: number; }; export type CpuUnion11 = Cpu11 | any; export type InvolvedObject9 = { apiVersion?: string | null | undefined; fieldPath?: string | null | undefined; kind?: string | null | undefined; name?: string | null | undefined; namespace?: string | null | undefined; resourceVersion?: string | null | undefined; uid?: string | null | undefined; }; export type InvolvedObjectUnion9 = InvolvedObject9 | any; export type SourceEvent9 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion9 = SourceEvent9 | any; export type Event12 = { count?: number | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject9 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent9 | any | null | undefined; type?: string | null | undefined; }; export declare const MemoryUnit11: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit11 = ClosedEnum; export type Memory11 = { unit: MemoryUnit11; value: number; }; export type MemoryUnion11 = Memory11 | any; export type NodeCounts = { current?: number | null | undefined; desired?: number | null | undefined; ready?: number | null | undefined; }; export declare const CpuAllocatableUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuAllocatableUnit = ClosedEnum; export type CpuAllocatable = { unit: CpuAllocatableUnit; value: number; }; export type AllocatableCpuUnion = CpuAllocatable | any; export declare const MemoryAllocatableUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryAllocatableUnit = ClosedEnum; export type MemoryAllocatable = { unit: MemoryAllocatableUnit; value: number; }; export type AllocatableMemoryUnion = MemoryAllocatable | any; export type Allocatable = { cpu?: CpuAllocatable | any | null | undefined; memory?: MemoryAllocatable | any | null | undefined; pods?: number | null | undefined; }; export declare const CpuCapacityUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuCapacityUnit = ClosedEnum; export type CpuCapacity = { unit: CpuCapacityUnit; value: number; }; export type CapacityCpuUnion = CpuCapacity | any; export declare const MemoryCapacityUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryCapacityUnit = ClosedEnum; export type MemoryCapacity = { unit: MemoryCapacityUnit; value: number; }; export type CapacityMemoryUnion = MemoryCapacity | any; export type Capacity = { cpu?: CpuCapacity | any | null | undefined; memory?: MemoryCapacity | any | null | undefined; pods?: number | null | undefined; }; export type NodeStatusCondition = { message?: string | null | undefined; reason?: string | null | undefined; status: string; type: string; }; export declare const UsageCpuUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type UsageCpuUnit = ClosedEnum; export type UsageCpu = { unit: UsageCpuUnit; value: number; }; export type UsageCpuUnion = UsageCpu | any; export declare const UsageMemoryUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type UsageMemoryUnit = ClosedEnum; export type UsageMemory = { unit: UsageMemoryUnit; value: number; }; export type UsageMemoryUnion = UsageMemory | any; export type Usage = { cpu?: UsageCpu | any | null | undefined; memory?: UsageMemory | any | null | undefined; }; export type UsageUnion = Usage | any; export type NodeStatus = { allocatable: Allocatable; capacity: Capacity; conditions?: Array | undefined; containerRuntimeVersion?: string | null | undefined; kubeletVersion?: string | null | undefined; labels: { [k: string]: string; }; name: string; ready: boolean; roles: Array; uid?: string | null | undefined; usage?: Usage | any | null | undefined; }; export type PodCounts = { current?: number | null | undefined; desired?: number | null | undefined; ready?: number | null | undefined; }; export declare const GetResourceDeploymentDetailReason24: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason24 = ClosedEnum; export declare const CollectionIssueSeverity24: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity24 = ClosedEnum; export type CollectionIssue24 = { message: string; reason: GetResourceDeploymentDetailReason24; severity: CollectionIssueSeverity24; source: string; }; export declare const Health24: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health24 = ClosedEnum; export declare const Lifecycle24: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle24 = ClosedEnum; export type DataStatus24 = { collectionIssues: Array; health: Health24; lifecycle: Lifecycle24; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type Data1 = { cpu?: Cpu11 | any | null | undefined; events: Array; memory?: Memory11 | any | null | undefined; name: string; namespace?: string | null | undefined; nodeCounts: NodeCounts; nodeStatuses?: Array | undefined; podCounts: PodCounts; region?: string | null | undefined; status: DataStatus24; version?: string | null | undefined; }; export type DataKubernetesCluster = { data: Data1; resourceType: "kubernetes-cluster"; }; export type Nodes5 = { current?: number | null | undefined; desired?: number | null | undefined; ready?: number | null | undefined; }; export declare const GetResourceDeploymentDetailReason23: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason23 = ClosedEnum; export declare const CollectionIssueSeverity23: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity23 = ClosedEnum; export type CollectionIssue23 = { message: string; reason: GetResourceDeploymentDetailReason23; severity: CollectionIssueSeverity23; source: string; }; export declare const Health23: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health23 = ClosedEnum; export declare const Lifecycle23: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle23 = ClosedEnum; export type DataStatus23 = { collectionIssues: Array; health: Health23; lifecycle: Lifecycle23; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal5 = { dockerApiVersion?: string | null | undefined; dockerArch?: string | null | undefined; dockerAvailable: boolean; dockerOs?: string | null | undefined; dockerVersion?: string | null | undefined; hostIdentifier?: string | null | undefined; name: string; networkAvailable: boolean; networkName?: string | null | undefined; nodes: Nodes5; runningContainers?: number | null | undefined; status: DataStatus23; trackedContainers?: number | null | undefined; backend: "local"; }; export declare const Category4: { readonly Quota: "quota"; readonly Capacity: "capacity"; readonly Allocation: "allocation"; readonly Other: "other"; }; export type Category4 = ClosedEnum; export type CapacityBlocker4 = { category: Category4; message: string; observedAt: Date; providerCode?: string | null | undefined; providerReference?: string | null | undefined; }; export type CapacityBlockerUnion4 = CapacityBlocker4 | any; export type DrainProgressBlocker4 = { reason: string; replicaId: string; schedulingMode: string; state: string; workloadName: string; }; export declare const DrainProgressStatus4: { readonly Draining: "draining"; readonly Drained: "drained"; readonly Terminating: "terminating"; }; export type DrainProgressStatus4 = ClosedEnum; export type DrainProgress4 = { blockers?: Array | undefined; drainDeadlineAt?: string | null | undefined; drainRequestedAt?: string | null | undefined; drainedAt?: string | null | undefined; force: boolean; machineId: string; replicaCount: number; stalled: boolean; status: DrainProgressStatus4; }; export type DrainProgressUnion4 = DrainProgress4 | any; export declare const UtilizationUnit4: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type UtilizationUnit4 = ClosedEnum; export type Utilization4 = { unit: UtilizationUnit4; value: number; }; export type UtilizationUnion4 = Utilization4 | any; export type Recommendation4 = { desiredMachines: number; reason?: string | null | undefined; unschedulableReplicas?: number | null | undefined; utilization?: Utilization4 | any | null | undefined; }; export type RecommendationUnion4 = Recommendation4 | any; export type CapacityGroup4 = { capacityBlocker?: CapacityBlocker4 | any | null | undefined; currentMachines: number; desiredMachines: number; drainProgress?: DrainProgress4 | any | null | undefined; groupId: string; instanceType?: string | null | undefined; maxMachines?: number | null | undefined; minMachines?: number | null | undefined; recommendation?: Recommendation4 | any | null | undefined; }; export declare const CpuUnit10: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit10 = ClosedEnum; export type Cpu10 = { unit: CpuUnit10; value: number; }; export type CpuUnion10 = Cpu10 | any; export type DrainBlocker = { reason: string; replicaId: string; schedulingMode: string; state: string; workloadName: string; }; export type Machine = { capacityGroup: string; cpuCores?: number | null | undefined; drainBlockers?: Array | undefined; drainDeadlineAt?: string | null | undefined; drainForce: boolean; drainRequestedAt?: string | null | undefined; drainedAt?: string | null | undefined; horizondVersion?: string | null | undefined; lastHeartbeat: string; machineId: string; memoryBytes?: number | null | undefined; overlayIp?: string | null | undefined; publicIp?: string | null | undefined; replicaCount: number; status: string; zone: string; }; export declare const MemoryUnit10: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit10 = ClosedEnum; export type Memory10 = { unit: MemoryUnit10; value: number; }; export type MemoryUnion10 = Memory10 | any; export type Nodes4 = { current?: number | null | undefined; desired?: number | null | undefined; ready?: number | null | undefined; }; export declare const GetResourceDeploymentDetailReason22: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason22 = ClosedEnum; export declare const CollectionIssueSeverity22: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity22 = ClosedEnum; export type CollectionIssue22 = { message: string; reason: GetResourceDeploymentDetailReason22; severity: CollectionIssueSeverity22; source: string; }; export declare const Health22: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health22 = ClosedEnum; export declare const Lifecycle22: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle22 = ClosedEnum; export type DataStatus22 = { collectionIssues: Array; health: Health22; lifecycle: Lifecycle22; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataMachines2 = { backendClusterId?: string | null | undefined; capacityGroups: Array; cpu?: Cpu10 | any | null | undefined; machines: Array; memory?: Memory10 | any | null | undefined; name: string; nodes: Nodes4; status: DataStatus22; backend: "machines"; }; export declare const Category3: { readonly Quota: "quota"; readonly Capacity: "capacity"; readonly Allocation: "allocation"; readonly Other: "other"; }; export type Category3 = ClosedEnum; export type CapacityBlocker3 = { category: Category3; message: string; observedAt: Date; providerCode?: string | null | undefined; providerReference?: string | null | undefined; }; export type CapacityBlockerUnion3 = CapacityBlocker3 | any; export type DrainProgressBlocker3 = { reason: string; replicaId: string; schedulingMode: string; state: string; workloadName: string; }; export declare const DrainProgressStatus3: { readonly Draining: "draining"; readonly Drained: "drained"; readonly Terminating: "terminating"; }; export type DrainProgressStatus3 = ClosedEnum; export type DrainProgress3 = { blockers?: Array | undefined; drainDeadlineAt?: string | null | undefined; drainRequestedAt?: string | null | undefined; drainedAt?: string | null | undefined; force: boolean; machineId: string; replicaCount: number; stalled: boolean; status: DrainProgressStatus3; }; export type DrainProgressUnion3 = DrainProgress3 | any; export declare const UtilizationUnit3: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type UtilizationUnit3 = ClosedEnum; export type Utilization3 = { unit: UtilizationUnit3; value: number; }; export type UtilizationUnion3 = Utilization3 | any; export type Recommendation3 = { desiredMachines: number; reason?: string | null | undefined; unschedulableReplicas?: number | null | undefined; utilization?: Utilization3 | any | null | undefined; }; export type RecommendationUnion3 = Recommendation3 | any; export type CapacityGroup3 = { capacityBlocker?: CapacityBlocker3 | any | null | undefined; currentMachines: number; desiredMachines: number; drainProgress?: DrainProgress3 | any | null | undefined; groupId: string; instanceType?: string | null | undefined; maxMachines?: number | null | undefined; minMachines?: number | null | undefined; recommendation?: Recommendation3 | any | null | undefined; }; export declare const CpuUnit9: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit9 = ClosedEnum; export type Cpu9 = { unit: CpuUnit9; value: number; }; export type CpuUnion9 = Cpu9 | any; export declare const MemoryUnit9: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit9 = ClosedEnum; export type Memory9 = { unit: MemoryUnit9; value: number; }; export type MemoryUnion9 = Memory9 | any; export type Nodes3 = { current?: number | null | undefined; desired?: number | null | undefined; ready?: number | null | undefined; }; export type ProviderFleet3 = { currentMachines: number; desiredMachines: number; groupId: string; location?: string | null | undefined; providerId: string; }; export declare const GetResourceDeploymentDetailReason21: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason21 = ClosedEnum; export declare const CollectionIssueSeverity21: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity21 = ClosedEnum; export type CollectionIssue21 = { message: string; reason: GetResourceDeploymentDetailReason21; severity: CollectionIssueSeverity21; source: string; }; export declare const Health21: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health21 = ClosedEnum; export declare const Lifecycle21: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle21 = ClosedEnum; export type DataStatus21 = { collectionIssues: Array; health: Health21; lifecycle: Lifecycle21; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzure2 = { backendClusterId?: string | null | undefined; capacityGroups: Array; cpu?: Cpu9 | any | null | undefined; memory?: Memory9 | any | null | undefined; name: string; nodes: Nodes3; providerFleets: Array; region?: string | null | undefined; status: DataStatus21; backend: "azure"; }; export declare const Category2: { readonly Quota: "quota"; readonly Capacity: "capacity"; readonly Allocation: "allocation"; readonly Other: "other"; }; export type Category2 = ClosedEnum; export type CapacityBlocker2 = { category: Category2; message: string; observedAt: Date; providerCode?: string | null | undefined; providerReference?: string | null | undefined; }; export type CapacityBlockerUnion2 = CapacityBlocker2 | any; export type DrainProgressBlocker2 = { reason: string; replicaId: string; schedulingMode: string; state: string; workloadName: string; }; export declare const DrainProgressStatus2: { readonly Draining: "draining"; readonly Drained: "drained"; readonly Terminating: "terminating"; }; export type DrainProgressStatus2 = ClosedEnum; export type DrainProgress2 = { blockers?: Array | undefined; drainDeadlineAt?: string | null | undefined; drainRequestedAt?: string | null | undefined; drainedAt?: string | null | undefined; force: boolean; machineId: string; replicaCount: number; stalled: boolean; status: DrainProgressStatus2; }; export type DrainProgressUnion2 = DrainProgress2 | any; export declare const UtilizationUnit2: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type UtilizationUnit2 = ClosedEnum; export type Utilization2 = { unit: UtilizationUnit2; value: number; }; export type UtilizationUnion2 = Utilization2 | any; export type Recommendation2 = { desiredMachines: number; reason?: string | null | undefined; unschedulableReplicas?: number | null | undefined; utilization?: Utilization2 | any | null | undefined; }; export type RecommendationUnion2 = Recommendation2 | any; export type CapacityGroup2 = { capacityBlocker?: CapacityBlocker2 | any | null | undefined; currentMachines: number; desiredMachines: number; drainProgress?: DrainProgress2 | any | null | undefined; groupId: string; instanceType?: string | null | undefined; maxMachines?: number | null | undefined; minMachines?: number | null | undefined; recommendation?: Recommendation2 | any | null | undefined; }; export declare const CpuUnit8: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit8 = ClosedEnum; export type Cpu8 = { unit: CpuUnit8; value: number; }; export type CpuUnion8 = Cpu8 | any; export declare const MemoryUnit8: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit8 = ClosedEnum; export type Memory8 = { unit: MemoryUnit8; value: number; }; export type MemoryUnion8 = Memory8 | any; export type Nodes2 = { current?: number | null | undefined; desired?: number | null | undefined; ready?: number | null | undefined; }; export type ProviderFleet2 = { currentMachines: number; desiredMachines: number; groupId: string; location?: string | null | undefined; providerId: string; }; export declare const GetResourceDeploymentDetailReason20: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason20 = ClosedEnum; export declare const CollectionIssueSeverity20: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity20 = ClosedEnum; export type CollectionIssue20 = { message: string; reason: GetResourceDeploymentDetailReason20; severity: CollectionIssueSeverity20; source: string; }; export declare const Health20: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health20 = ClosedEnum; export declare const Lifecycle20: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle20 = ClosedEnum; export type DataStatus20 = { collectionIssues: Array; health: Health20; lifecycle: Lifecycle20; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcp2 = { backendClusterId?: string | null | undefined; capacityGroups: Array; cpu?: Cpu8 | any | null | undefined; memory?: Memory8 | any | null | undefined; name: string; nodes: Nodes2; providerFleets: Array; region?: string | null | undefined; status: DataStatus20; backend: "gcp"; }; export declare const Category1: { readonly Quota: "quota"; readonly Capacity: "capacity"; readonly Allocation: "allocation"; readonly Other: "other"; }; export type Category1 = ClosedEnum; export type CapacityBlocker1 = { category: Category1; message: string; observedAt: Date; providerCode?: string | null | undefined; providerReference?: string | null | undefined; }; export type CapacityBlockerUnion1 = CapacityBlocker1 | any; export type DrainProgressBlocker1 = { reason: string; replicaId: string; schedulingMode: string; state: string; workloadName: string; }; export declare const DrainProgressStatus1: { readonly Draining: "draining"; readonly Drained: "drained"; readonly Terminating: "terminating"; }; export type DrainProgressStatus1 = ClosedEnum; export type DrainProgress1 = { blockers?: Array | undefined; drainDeadlineAt?: string | null | undefined; drainRequestedAt?: string | null | undefined; drainedAt?: string | null | undefined; force: boolean; machineId: string; replicaCount: number; stalled: boolean; status: DrainProgressStatus1; }; export type DrainProgressUnion1 = DrainProgress1 | any; export declare const UtilizationUnit1: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type UtilizationUnit1 = ClosedEnum; export type Utilization1 = { unit: UtilizationUnit1; value: number; }; export type UtilizationUnion1 = Utilization1 | any; export type Recommendation1 = { desiredMachines: number; reason?: string | null | undefined; unschedulableReplicas?: number | null | undefined; utilization?: Utilization1 | any | null | undefined; }; export type RecommendationUnion1 = Recommendation1 | any; export type CapacityGroup1 = { capacityBlocker?: CapacityBlocker1 | any | null | undefined; currentMachines: number; desiredMachines: number; drainProgress?: DrainProgress1 | any | null | undefined; groupId: string; instanceType?: string | null | undefined; maxMachines?: number | null | undefined; minMachines?: number | null | undefined; recommendation?: Recommendation1 | any | null | undefined; }; export declare const CpuUnit7: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit7 = ClosedEnum; export type Cpu7 = { unit: CpuUnit7; value: number; }; export type CpuUnion7 = Cpu7 | any; export declare const MemoryUnit7: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit7 = ClosedEnum; export type Memory7 = { unit: MemoryUnit7; value: number; }; export type MemoryUnion7 = Memory7 | any; export type Nodes1 = { current?: number | null | undefined; desired?: number | null | undefined; ready?: number | null | undefined; }; export type ProviderFleet1 = { currentMachines: number; desiredMachines: number; groupId: string; location?: string | null | undefined; providerId: string; }; export declare const GetResourceDeploymentDetailReason19: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason19 = ClosedEnum; export declare const CollectionIssueSeverity19: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity19 = ClosedEnum; export type CollectionIssue19 = { message: string; reason: GetResourceDeploymentDetailReason19; severity: CollectionIssueSeverity19; source: string; }; export declare const Health19: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health19 = ClosedEnum; export declare const Lifecycle19: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle19 = ClosedEnum; export type DataStatus19 = { collectionIssues: Array; health: Health19; lifecycle: Lifecycle19; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAws2 = { backendClusterId?: string | null | undefined; capacityGroups: Array; cpu?: Cpu7 | any | null | undefined; memory?: Memory7 | any | null | undefined; name: string; nodes: Nodes1; providerFleets: Array; region?: string | null | undefined; status: DataStatus19; backend: "aws"; }; export type DataUnion5 = DataAws2 | DataGcp2 | DataAzure2 | DataMachines2 | DataLocal5; export type DataComputeCluster = { data: DataAws2 | DataGcp2 | DataAzure2 | DataMachines2 | DataLocal5; resourceType: "compute-cluster"; }; export declare const DaemonInstanceCpuUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type DaemonInstanceCpuUnit = ClosedEnum; export type DaemonInstanceCpu = { unit: DaemonInstanceCpuUnit; value: number; }; export type DaemonInstanceCpuUnion5 = DaemonInstanceCpu | any; export declare const DaemonInstanceKind: { readonly Container: "container"; readonly Process: "process"; readonly Daemon: "daemon"; }; export type DaemonInstanceKind = ClosedEnum; export declare const DaemonInstanceMemoryUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type DaemonInstanceMemoryUnit = ClosedEnum; export type DaemonInstanceMemory = { unit: DaemonInstanceMemoryUnit; value: number; }; export type DaemonInstanceMemoryUnion5 = DaemonInstanceMemory | any; export type DaemonInstance5 = { cpu?: DaemonInstanceCpu | any | null | undefined; kind: DaemonInstanceKind; memory?: DaemonInstanceMemory | any | null | undefined; name: string; phase?: string | null | undefined; pid?: number | null | undefined; ready: boolean; restartCount?: number | null | undefined; unitId: string; }; export type DaemonInstanceUnion = DaemonInstance5 | any; export declare const EventSeverity3: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type EventSeverity3 = ClosedEnum; export type Subject3 = { id?: string | null | undefined; kind: string; name?: string | null | undefined; }; export type SubjectUnion3 = Subject3 | any; export type Event11 = { kind: string; message: string; raw?: any | null | undefined; severity: EventSeverity3; subject?: Subject3 | any | null | undefined; timestamp: Date; }; export declare const GetResourceDeploymentDetailReason18: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason18 = ClosedEnum; export declare const CollectionIssueSeverity18: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity18 = ClosedEnum; export type CollectionIssue18 = { message: string; reason: GetResourceDeploymentDetailReason18; severity: CollectionIssueSeverity18; source: string; }; export declare const Health18: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health18 = ClosedEnum; export declare const Lifecycle18: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle18 = ClosedEnum; export type DataStatus18 = { collectionIssues: Array; health: Health18; lifecycle: Lifecycle18; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal4 = { commandSupported: boolean; daemonInstance?: DaemonInstance5 | any | null | undefined; daemonName?: string | undefined; events: Array; exitReason?: string | null | undefined; imagePathPresent: boolean; pid?: number | null | undefined; restartCount?: number | null | undefined; runtimeId: string; status: DataStatus18; backend: "local"; }; export declare const CpuUnit6: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit6 = ClosedEnum; export type Cpu6 = { unit: CpuUnit6; value: number; }; export type CpuUnion6 = Cpu6 | any; export type InvolvedObject8 = { apiVersion?: string | null | undefined; fieldPath?: string | null | undefined; kind?: string | null | undefined; name?: string | null | undefined; namespace?: string | null | undefined; resourceVersion?: string | null | undefined; uid?: string | null | undefined; }; export type InvolvedObjectUnion8 = InvolvedObject8 | any; export type SourceEvent8 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion8 = SourceEvent8 | any; export type Event10 = { count?: number | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject8 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent8 | any | null | undefined; type?: string | null | undefined; }; export declare const MemoryUnit6: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit6 = ClosedEnum; export type Memory6 = { unit: MemoryUnit6; value: number; }; export type MemoryUnion6 = Memory6 | any; export declare const CpuPodUnit3: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuPodUnit3 = ClosedEnum; export type CpuPod3 = { unit: CpuPodUnit3; value: number; }; export type PodCpuUnion3 = CpuPod3 | any; export declare const MemoryPodUnit3: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryPodUnit3 = ClosedEnum; export type MemoryPod3 = { unit: MemoryPodUnit3; value: number; }; export type PodMemoryUnion3 = MemoryPod3 | any; export type OwnerReference3 = { controller: boolean; kind: string; name: string; uid: string; }; export type Pod3 = { cpu?: CpuPod3 | any | null | undefined; memory?: MemoryPod3 | any | null | undefined; name: string; nodeName?: string | null | undefined; ownerReferences: Array; phase?: string | null | undefined; podIp?: string | null | undefined; ready: boolean; restartCount: number; terminatedReason?: string | null | undefined; uid?: string | null | undefined; waitingReason?: string | null | undefined; }; export type Replicas4 = { available?: number | null | undefined; current?: number | null | undefined; desired?: number | null | undefined; misscheduled?: number | null | undefined; ready?: number | null | undefined; updated?: number | null | undefined; }; export declare const GetResourceDeploymentDetailReason17: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason17 = ClosedEnum; export declare const CollectionIssueSeverity17: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity17 = ClosedEnum; export type CollectionIssue17 = { message: string; reason: GetResourceDeploymentDetailReason17; severity: CollectionIssueSeverity17; source: string; }; export declare const Health17: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health17 = ClosedEnum; export declare const Lifecycle17: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle17 = ClosedEnum; export type DataStatus17 = { collectionIssues: Array; health: Health17; lifecycle: Lifecycle17; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type WorkloadCondition3 = { lastTransitionTime?: Date | null | undefined; message?: string | null | undefined; reason?: string | null | undefined; status: string; type: string; }; export type Workload3 = { availableReplicas?: number | null | undefined; conditions: Array; desiredGeneration?: number | null | undefined; desiredReplicas?: number | null | undefined; observedGeneration?: number | null | undefined; readyReplicas?: number | null | undefined; rolloutReason?: string | null | undefined; updatedReplicas?: number | null | undefined; }; export type WorkloadUnion3 = Workload3 | any; export type DataKubernetes3 = { commandSupported: boolean; cpu?: Cpu6 | any | null | undefined; events: Array; memory?: Memory6 | any | null | undefined; name: string; namespace: string; pods: Array; replicas: Replicas4; restarts?: number | null | undefined; status: DataStatus17; workload?: Workload3 | any | null | undefined; backend: "kubernetes"; }; export declare const CpuDaemonInstanceUnit4: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuDaemonInstanceUnit4 = ClosedEnum; export type CpuDaemonInstance4 = { unit: CpuDaemonInstanceUnit4; value: number; }; export type DaemonInstanceCpuUnion4 = CpuDaemonInstance4 | any; export declare const MemoryDaemonInstanceUnit4: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryDaemonInstanceUnit4 = ClosedEnum; export type MemoryDaemonInstance4 = { unit: MemoryDaemonInstanceUnit4; value: number; }; export type DaemonInstanceMemoryUnion4 = MemoryDaemonInstance4 | any; export type DaemonInstance4 = { cpu?: CpuDaemonInstance4 | any | null | undefined; ip?: string | null | undefined; machineId?: string | null | undefined; memory?: MemoryDaemonInstance4 | any | null | undefined; message?: string | null | undefined; metricsHealthy?: boolean | null | undefined; metricsLastUpdated?: string | null | undefined; metricsStatus?: string | null | undefined; name: string; nodeName?: string | null | undefined; phase?: string | null | undefined; ready: boolean; reason?: string | null | undefined; replicaId: string; restartCount?: number | null | undefined; status?: string | null | undefined; terminatedReason?: string | null | undefined; waitingReason?: string | null | undefined; }; export type InvolvedObject7 = { details?: any | null | undefined; id?: string | null | undefined; kind?: string | null | undefined; machineId?: string | null | undefined; name?: string | null | undefined; replicaId?: string | null | undefined; }; export type InvolvedObjectUnion7 = InvolvedObject7 | any; export type SourceEvent7 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion7 = SourceEvent7 | any; export type Event9 = { count?: number | null | undefined; details?: any | null | undefined; eventId?: string | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject7 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent7 | any | null | undefined; type?: string | null | undefined; }; export declare const GetResourceDeploymentDetailReason16: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason16 = ClosedEnum; export declare const CollectionIssueSeverity16: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity16 = ClosedEnum; export type CollectionIssue16 = { message: string; reason: GetResourceDeploymentDetailReason16; severity: CollectionIssueSeverity16; source: string; }; export declare const Health16: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health16 = ClosedEnum; export declare const Lifecycle16: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle16 = ClosedEnum; export type DataStatus16 = { collectionIssues: Array; health: Health16; lifecycle: Lifecycle16; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataMachines1 = { assignedMachines: number; capacityGroup: string; commandSupported: boolean; daemonInstances: Array; daemonName?: string | undefined; desiredMachines: number; events: Array; healthyInstances: number; horizonClusterId: string; horizonStatus: string; horizonStatusMessage?: string | null | undefined; horizonStatusReason?: string | null | undefined; latestUpdateTimestamp: string; observedImage?: string | null | undefined; status: DataStatus16; unavailableInstances: number; backend: "machines"; }; export declare const CpuDaemonInstanceUnit3: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuDaemonInstanceUnit3 = ClosedEnum; export type CpuDaemonInstance3 = { unit: CpuDaemonInstanceUnit3; value: number; }; export type DaemonInstanceCpuUnion3 = CpuDaemonInstance3 | any; export declare const MemoryDaemonInstanceUnit3: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryDaemonInstanceUnit3 = ClosedEnum; export type MemoryDaemonInstance3 = { unit: MemoryDaemonInstanceUnit3; value: number; }; export type DaemonInstanceMemoryUnion3 = MemoryDaemonInstance3 | any; export type DaemonInstance3 = { cpu?: CpuDaemonInstance3 | any | null | undefined; ip?: string | null | undefined; machineId?: string | null | undefined; memory?: MemoryDaemonInstance3 | any | null | undefined; message?: string | null | undefined; metricsHealthy?: boolean | null | undefined; metricsLastUpdated?: string | null | undefined; metricsStatus?: string | null | undefined; name: string; nodeName?: string | null | undefined; phase?: string | null | undefined; ready: boolean; reason?: string | null | undefined; replicaId: string; restartCount?: number | null | undefined; status?: string | null | undefined; terminatedReason?: string | null | undefined; waitingReason?: string | null | undefined; }; export type InvolvedObject6 = { details?: any | null | undefined; id?: string | null | undefined; kind?: string | null | undefined; machineId?: string | null | undefined; name?: string | null | undefined; replicaId?: string | null | undefined; }; export type InvolvedObjectUnion6 = InvolvedObject6 | any; export type SourceEvent6 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion6 = SourceEvent6 | any; export type Event8 = { count?: number | null | undefined; details?: any | null | undefined; eventId?: string | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject6 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent6 | any | null | undefined; type?: string | null | undefined; }; export declare const GetResourceDeploymentDetailReason15: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason15 = ClosedEnum; export declare const CollectionIssueSeverity15: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity15 = ClosedEnum; export type CollectionIssue15 = { message: string; reason: GetResourceDeploymentDetailReason15; severity: CollectionIssueSeverity15; source: string; }; export declare const Health15: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health15 = ClosedEnum; export declare const Lifecycle15: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle15 = ClosedEnum; export type DataStatus15 = { collectionIssues: Array; health: Health15; lifecycle: Lifecycle15; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzure1 = { assignedMachines: number; capacityGroup: string; commandSupported: boolean; daemonInstances: Array; daemonName?: string | undefined; desiredMachines: number; events: Array; healthyInstances: number; horizonClusterId: string; horizonStatus: string; horizonStatusMessage?: string | null | undefined; horizonStatusReason?: string | null | undefined; latestUpdateTimestamp: string; observedImage?: string | null | undefined; status: DataStatus15; unavailableInstances: number; backend: "azure"; }; export declare const CpuDaemonInstanceUnit2: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuDaemonInstanceUnit2 = ClosedEnum; export type CpuDaemonInstance2 = { unit: CpuDaemonInstanceUnit2; value: number; }; export type DaemonInstanceCpuUnion2 = CpuDaemonInstance2 | any; export declare const MemoryDaemonInstanceUnit2: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryDaemonInstanceUnit2 = ClosedEnum; export type MemoryDaemonInstance2 = { unit: MemoryDaemonInstanceUnit2; value: number; }; export type DaemonInstanceMemoryUnion2 = MemoryDaemonInstance2 | any; export type DaemonInstance2 = { cpu?: CpuDaemonInstance2 | any | null | undefined; ip?: string | null | undefined; machineId?: string | null | undefined; memory?: MemoryDaemonInstance2 | any | null | undefined; message?: string | null | undefined; metricsHealthy?: boolean | null | undefined; metricsLastUpdated?: string | null | undefined; metricsStatus?: string | null | undefined; name: string; nodeName?: string | null | undefined; phase?: string | null | undefined; ready: boolean; reason?: string | null | undefined; replicaId: string; restartCount?: number | null | undefined; status?: string | null | undefined; terminatedReason?: string | null | undefined; waitingReason?: string | null | undefined; }; export type InvolvedObject5 = { details?: any | null | undefined; id?: string | null | undefined; kind?: string | null | undefined; machineId?: string | null | undefined; name?: string | null | undefined; replicaId?: string | null | undefined; }; export type InvolvedObjectUnion5 = InvolvedObject5 | any; export type SourceEvent5 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion5 = SourceEvent5 | any; export type Event7 = { count?: number | null | undefined; details?: any | null | undefined; eventId?: string | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject5 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent5 | any | null | undefined; type?: string | null | undefined; }; export declare const GetResourceDeploymentDetailReason14: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason14 = ClosedEnum; export declare const CollectionIssueSeverity14: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity14 = ClosedEnum; export type CollectionIssue14 = { message: string; reason: GetResourceDeploymentDetailReason14; severity: CollectionIssueSeverity14; source: string; }; export declare const Health14: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health14 = ClosedEnum; export declare const Lifecycle14: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle14 = ClosedEnum; export type DataStatus14 = { collectionIssues: Array; health: Health14; lifecycle: Lifecycle14; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcp1 = { assignedMachines: number; capacityGroup: string; commandSupported: boolean; daemonInstances: Array; daemonName?: string | undefined; desiredMachines: number; events: Array; healthyInstances: number; horizonClusterId: string; horizonStatus: string; horizonStatusMessage?: string | null | undefined; horizonStatusReason?: string | null | undefined; latestUpdateTimestamp: string; observedImage?: string | null | undefined; status: DataStatus14; unavailableInstances: number; backend: "gcp"; }; export declare const CpuDaemonInstanceUnit1: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuDaemonInstanceUnit1 = ClosedEnum; export type CpuDaemonInstance1 = { unit: CpuDaemonInstanceUnit1; value: number; }; export type DaemonInstanceCpuUnion1 = CpuDaemonInstance1 | any; export declare const MemoryDaemonInstanceUnit1: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryDaemonInstanceUnit1 = ClosedEnum; export type MemoryDaemonInstance1 = { unit: MemoryDaemonInstanceUnit1; value: number; }; export type DaemonInstanceMemoryUnion1 = MemoryDaemonInstance1 | any; export type DaemonInstance1 = { cpu?: CpuDaemonInstance1 | any | null | undefined; ip?: string | null | undefined; machineId?: string | null | undefined; memory?: MemoryDaemonInstance1 | any | null | undefined; message?: string | null | undefined; metricsHealthy?: boolean | null | undefined; metricsLastUpdated?: string | null | undefined; metricsStatus?: string | null | undefined; name: string; nodeName?: string | null | undefined; phase?: string | null | undefined; ready: boolean; reason?: string | null | undefined; replicaId: string; restartCount?: number | null | undefined; status?: string | null | undefined; terminatedReason?: string | null | undefined; waitingReason?: string | null | undefined; }; export type InvolvedObject4 = { details?: any | null | undefined; id?: string | null | undefined; kind?: string | null | undefined; machineId?: string | null | undefined; name?: string | null | undefined; replicaId?: string | null | undefined; }; export type InvolvedObjectUnion4 = InvolvedObject4 | any; export type SourceEvent4 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion4 = SourceEvent4 | any; export type Event6 = { count?: number | null | undefined; details?: any | null | undefined; eventId?: string | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject4 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent4 | any | null | undefined; type?: string | null | undefined; }; export declare const GetResourceDeploymentDetailReason13: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason13 = ClosedEnum; export declare const CollectionIssueSeverity13: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity13 = ClosedEnum; export type CollectionIssue13 = { message: string; reason: GetResourceDeploymentDetailReason13; severity: CollectionIssueSeverity13; source: string; }; export declare const Health13: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health13 = ClosedEnum; export declare const Lifecycle13: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle13 = ClosedEnum; export type DataStatus13 = { collectionIssues: Array; health: Health13; lifecycle: Lifecycle13; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAws1 = { assignedMachines: number; capacityGroup: string; commandSupported: boolean; daemonInstances: Array; daemonName?: string | undefined; desiredMachines: number; events: Array; healthyInstances: number; horizonClusterId: string; horizonStatus: string; horizonStatusMessage?: string | null | undefined; horizonStatusReason?: string | null | undefined; latestUpdateTimestamp: string; observedImage?: string | null | undefined; status: DataStatus13; unavailableInstances: number; backend: "aws"; }; export type DataUnion4 = DataAws1 | DataGcp1 | DataAzure1 | DataMachines1 | DataKubernetes3 | DataLocal4; export type DataDaemon = { data: DataAws1 | DataGcp1 | DataAzure1 | DataMachines1 | DataKubernetes3 | DataLocal4; resourceType: "daemon"; }; export declare const ContainerUnitCpuUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type ContainerUnitCpuUnit = ClosedEnum; export type ContainerUnitCpu = { unit: ContainerUnitCpuUnit; value: number; }; export type ContainerUnitCpuUnion = ContainerUnitCpu | any; export declare const ContainerUnitKind: { readonly Container: "container"; readonly Process: "process"; readonly Daemon: "daemon"; }; export type ContainerUnitKind = ClosedEnum; export declare const ContainerUnitMemoryUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type ContainerUnitMemoryUnit = ClosedEnum; export type ContainerUnitMemory = { unit: ContainerUnitMemoryUnit; value: number; }; export type ContainerUnitMemoryUnion = ContainerUnitMemory | any; export type ContainerUnit = { cpu?: ContainerUnitCpu | any | null | undefined; kind: ContainerUnitKind; memory?: ContainerUnitMemory | any | null | undefined; name: string; phase?: string | null | undefined; pid?: number | null | undefined; ready: boolean; restartCount?: number | null | undefined; unitId: string; }; export type ContainerUnitUnion = ContainerUnit | any; export declare const CpuUnit5: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit5 = ClosedEnum; export type Cpu5 = { unit: CpuUnit5; value: number; }; export type CpuUnion5 = Cpu5 | any; export declare const EventSeverity2: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type EventSeverity2 = ClosedEnum; export type Subject2 = { id?: string | null | undefined; kind: string; name?: string | null | undefined; }; export type SubjectUnion2 = Subject2 | any; export type Event5 = { kind: string; message: string; raw?: any | null | undefined; severity: EventSeverity2; subject?: Subject2 | any | null | undefined; timestamp: Date; }; export declare const MemoryUnit5: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit5 = ClosedEnum; export type Memory5 = { unit: MemoryUnit5; value: number; }; export type MemoryUnion5 = Memory5 | any; export declare const GetResourceDeploymentDetailReason12: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason12 = ClosedEnum; export declare const CollectionIssueSeverity12: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity12 = ClosedEnum; export type CollectionIssue12 = { message: string; reason: GetResourceDeploymentDetailReason12; severity: CollectionIssueSeverity12; source: string; }; export declare const Health12: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health12 = ClosedEnum; export declare const Lifecycle12: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle12 = ClosedEnum; export type DataStatus12 = { collectionIssues: Array; health: Health12; lifecycle: Lifecycle12; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal3 = { bindMountCount: number; containerId?: string | null | undefined; containerUnit?: ContainerUnit | any | null | undefined; cpu?: Cpu5 | any | null | undefined; events: Array; image?: string | null | undefined; localUrl?: string | null | undefined; memory?: Memory5 | any | null | undefined; name?: string | null | undefined; portCount: number; restartCount?: number | null | undefined; runtimeReachable: boolean; runtimeStatus?: string | null | undefined; status: DataStatus12; backend: "local"; }; export declare const CpuUnit4: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit4 = ClosedEnum; export type Cpu4 = { unit: CpuUnit4; value: number; }; export type CpuUnion4 = Cpu4 | any; export type InvolvedObject3 = { apiVersion?: string | null | undefined; fieldPath?: string | null | undefined; kind?: string | null | undefined; name?: string | null | undefined; namespace?: string | null | undefined; resourceVersion?: string | null | undefined; uid?: string | null | undefined; }; export type InvolvedObjectUnion3 = InvolvedObject3 | any; export type SourceEvent3 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion3 = SourceEvent3 | any; export type Event4 = { count?: number | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject3 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent3 | any | null | undefined; type?: string | null | undefined; }; export declare const MemoryUnit4: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit4 = ClosedEnum; export type Memory4 = { unit: MemoryUnit4; value: number; }; export type MemoryUnion4 = Memory4 | any; export declare const CpuPodUnit2: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuPodUnit2 = ClosedEnum; export type CpuPod2 = { unit: CpuPodUnit2; value: number; }; export type PodCpuUnion2 = CpuPod2 | any; export declare const MemoryPodUnit2: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryPodUnit2 = ClosedEnum; export type MemoryPod2 = { unit: MemoryPodUnit2; value: number; }; export type PodMemoryUnion2 = MemoryPod2 | any; export type OwnerReference2 = { controller: boolean; kind: string; name: string; uid: string; }; export type Pod2 = { cpu?: CpuPod2 | any | null | undefined; memory?: MemoryPod2 | any | null | undefined; name: string; nodeName?: string | null | undefined; ownerReferences: Array; phase?: string | null | undefined; podIp?: string | null | undefined; ready: boolean; restartCount: number; terminatedReason?: string | null | undefined; uid?: string | null | undefined; waitingReason?: string | null | undefined; }; export type Replicas3 = { available?: number | null | undefined; current?: number | null | undefined; desired?: number | null | undefined; misscheduled?: number | null | undefined; ready?: number | null | undefined; updated?: number | null | undefined; }; export declare const GetResourceDeploymentDetailReason11: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason11 = ClosedEnum; export declare const CollectionIssueSeverity11: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity11 = ClosedEnum; export type CollectionIssue11 = { message: string; reason: GetResourceDeploymentDetailReason11; severity: CollectionIssueSeverity11; source: string; }; export declare const Health11: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health11 = ClosedEnum; export declare const Lifecycle11: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle11 = ClosedEnum; export type DataStatus11 = { collectionIssues: Array; health: Health11; lifecycle: Lifecycle11; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type WorkloadCondition2 = { lastTransitionTime?: Date | null | undefined; message?: string | null | undefined; reason?: string | null | undefined; status: string; type: string; }; export type Workload2 = { availableReplicas?: number | null | undefined; conditions: Array; desiredGeneration?: number | null | undefined; desiredReplicas?: number | null | undefined; observedGeneration?: number | null | undefined; readyReplicas?: number | null | undefined; rolloutReason?: string | null | undefined; updatedReplicas?: number | null | undefined; }; export type WorkloadUnion2 = Workload2 | any; export declare const WorkloadKind2: { readonly Deployment: "deployment"; readonly StatefulSet: "statefulSet"; readonly DaemonSet: "daemonSet"; readonly ReplicaSet: "replicaSet"; readonly Pod: "pod"; }; export type WorkloadKind2 = ClosedEnum; export type DataKubernetes2 = { cpu?: Cpu4 | any | null | undefined; events: Array; memory?: Memory4 | any | null | undefined; name: string; namespace: string; pods: Array; replicas: Replicas3; restarts?: number | null | undefined; status: DataStatus11; workload?: Workload2 | any | null | undefined; workloadKind: WorkloadKind2; backend: "kubernetes"; }; export declare const CpuUnit3: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit3 = ClosedEnum; export type Cpu3 = { unit: CpuUnit3; value: number; }; export type CpuUnion3 = Cpu3 | any; export type InvolvedObject2 = { details?: any | null | undefined; id?: string | null | undefined; kind?: string | null | undefined; machineId?: string | null | undefined; name?: string | null | undefined; replicaId?: string | null | undefined; }; export type InvolvedObjectUnion2 = InvolvedObject2 | any; export type SourceEvent2 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion2 = SourceEvent2 | any; export type Event3 = { count?: number | null | undefined; details?: any | null | undefined; eventId?: string | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject2 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent2 | any | null | undefined; type?: string | null | undefined; }; export declare const MemoryUnit3: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit3 = ClosedEnum; export type Memory3 = { unit: MemoryUnit3; value: number; }; export type MemoryUnion3 = Memory3 | any; export declare const CpuReplicaUnitUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuReplicaUnitUnit = ClosedEnum; export type CpuReplicaUnit = { unit: CpuReplicaUnitUnit; value: number; }; export type ReplicaUnitCpuUnion = CpuReplicaUnit | any; export declare const MemoryReplicaUnitUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryReplicaUnitUnit = ClosedEnum; export type MemoryReplicaUnit = { unit: MemoryReplicaUnitUnit; value: number; }; export type ReplicaUnitMemoryUnion = MemoryReplicaUnit | any; export type ReplicaUnit = { cpu?: CpuReplicaUnit | any | null | undefined; ip?: string | null | undefined; machineId?: string | null | undefined; memory?: MemoryReplicaUnit | any | null | undefined; message?: string | null | undefined; metricsHealthy?: boolean | null | undefined; metricsLastUpdated?: string | null | undefined; metricsStatus?: string | null | undefined; name: string; nodeName?: string | null | undefined; phase?: string | null | undefined; ready: boolean; reason?: string | null | undefined; replicaId: string; restartCount?: number | null | undefined; status?: string | null | undefined; terminatedReason?: string | null | undefined; waitingReason?: string | null | undefined; }; export type Replicas2 = { available?: number | null | undefined; current?: number | null | undefined; desired?: number | null | undefined; misscheduled?: number | null | undefined; ready?: number | null | undefined; updated?: number | null | undefined; }; export declare const SchedulingMode: { readonly Replicated: "replicated"; readonly Stateful: "stateful"; readonly Daemon: "daemon"; }; export type SchedulingMode = ClosedEnum; export declare const GetResourceDeploymentDetailReason10: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason10 = ClosedEnum; export declare const CollectionIssueSeverity10: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity10 = ClosedEnum; export type CollectionIssue10 = { message: string; reason: GetResourceDeploymentDetailReason10; severity: CollectionIssueSeverity10; source: string; }; export declare const Health10: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health10 = ClosedEnum; export declare const Lifecycle10: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle10 = ClosedEnum; export type DataStatus10 = { collectionIssues: Array; health: Health10; lifecycle: Lifecycle10; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataHorizonPlatform = { attentionCount: number; containerId: string; cpu?: Cpu3 | any | null | undefined; events: Array; image?: string | null | undefined; latestUpdateTimestamp?: string | null | undefined; memory?: Memory3 | any | null | undefined; observedImage?: string | null | undefined; replicaUnits: Array; replicas: Replicas2; schedulingMode: SchedulingMode; status: DataStatus10; backend: "horizonPlatform"; }; export type DataUnion3 = DataHorizonPlatform | DataKubernetes2 | DataLocal3; export type DataContainer = { data: DataHorizonPlatform | DataKubernetes2 | DataLocal3; resourceType: "container"; }; export declare const CpuUnit2: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit2 = ClosedEnum; export type Cpu2 = { unit: CpuUnit2; value: number; }; export type CpuUnion2 = Cpu2 | any; export declare const EventSeverity1: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type EventSeverity1 = ClosedEnum; export type Subject1 = { id?: string | null | undefined; kind: string; name?: string | null | undefined; }; export type SubjectUnion1 = Subject1 | any; export type Event2 = { kind: string; message: string; raw?: any | null | undefined; severity: EventSeverity1; subject?: Subject1 | any | null | undefined; timestamp: Date; }; export declare const MemoryUnit2: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit2 = ClosedEnum; export type Memory2 = { unit: MemoryUnit2; value: number; }; export type MemoryUnion2 = Memory2 | any; export declare const ProcessCpuUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type ProcessCpuUnit = ClosedEnum; export type ProcessCpu = { unit: ProcessCpuUnit; value: number; }; export type ProcessCpuUnion = ProcessCpu | any; export declare const ProcessKind: { readonly Container: "container"; readonly Process: "process"; readonly Daemon: "daemon"; }; export type ProcessKind = ClosedEnum; export declare const ProcessMemoryUnit: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type ProcessMemoryUnit = ClosedEnum; export type ProcessMemory = { unit: ProcessMemoryUnit; value: number; }; export type ProcessMemoryUnion = ProcessMemory | any; export type Process = { cpu?: ProcessCpu | any | null | undefined; kind: ProcessKind; memory?: ProcessMemory | any | null | undefined; name: string; phase?: string | null | undefined; pid?: number | null | undefined; ready: boolean; restartCount?: number | null | undefined; unitId: string; }; export type ProcessUnion = Process | any; export declare const GetResourceDeploymentDetailReason9: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason9 = ClosedEnum; export declare const CollectionIssueSeverity9: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity9 = ClosedEnum; export type CollectionIssue9 = { message: string; reason: GetResourceDeploymentDetailReason9; severity: CollectionIssueSeverity9; source: string; }; export declare const Health9: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health9 = ClosedEnum; export declare const Lifecycle9: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle9 = ClosedEnum; export type DataStatus9 = { collectionIssues: Array; health: Health9; lifecycle: Lifecycle9; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal2 = { commandSupported: boolean; cpu?: Cpu2 | any | null | undefined; events: Array; imagePathPresent: boolean; memory?: Memory2 | any | null | undefined; pid?: number | null | undefined; process?: Process | any | null | undefined; readinessProbeOk?: boolean | null | undefined; status: DataStatus9; triggerCount: number; backend: "local"; }; export declare const CpuUnit1: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuUnit1 = ClosedEnum; export type Cpu1 = { unit: CpuUnit1; value: number; }; export type CpuUnion1 = Cpu1 | any; export type InvolvedObject1 = { apiVersion?: string | null | undefined; fieldPath?: string | null | undefined; kind?: string | null | undefined; name?: string | null | undefined; namespace?: string | null | undefined; resourceVersion?: string | null | undefined; uid?: string | null | undefined; }; export type InvolvedObjectUnion1 = InvolvedObject1 | any; export type SourceEvent1 = { component?: string | null | undefined; host?: string | null | undefined; }; export type SourceUnion1 = SourceEvent1 | any; export type Event1 = { count?: number | null | undefined; eventTime?: Date | null | undefined; firstTimestamp?: Date | null | undefined; involvedObject?: InvolvedObject1 | any | null | undefined; lastTimestamp?: Date | null | undefined; message: string; raw?: any | null | undefined; reason: string; source?: SourceEvent1 | any | null | undefined; type?: string | null | undefined; }; export declare const MemoryUnit1: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryUnit1 = ClosedEnum; export type Memory1 = { unit: MemoryUnit1; value: number; }; export type MemoryUnion1 = Memory1 | any; export declare const CpuPodUnit1: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type CpuPodUnit1 = ClosedEnum; export type CpuPod1 = { unit: CpuPodUnit1; value: number; }; export type PodCpuUnion1 = CpuPod1 | any; export declare const MemoryPodUnit1: { readonly Count: "count"; readonly Percent: "percent"; readonly Bytes: "bytes"; readonly Cores: "cores"; readonly Milliseconds: "milliseconds"; readonly RequestsPerSecond: "requests-per-second"; }; export type MemoryPodUnit1 = ClosedEnum; export type MemoryPod1 = { unit: MemoryPodUnit1; value: number; }; export type PodMemoryUnion1 = MemoryPod1 | any; export type OwnerReference1 = { controller: boolean; kind: string; name: string; uid: string; }; export type Pod1 = { cpu?: CpuPod1 | any | null | undefined; memory?: MemoryPod1 | any | null | undefined; name: string; nodeName?: string | null | undefined; ownerReferences: Array; phase?: string | null | undefined; podIp?: string | null | undefined; ready: boolean; restartCount: number; terminatedReason?: string | null | undefined; uid?: string | null | undefined; waitingReason?: string | null | undefined; }; export type Replicas1 = { available?: number | null | undefined; current?: number | null | undefined; desired?: number | null | undefined; misscheduled?: number | null | undefined; ready?: number | null | undefined; updated?: number | null | undefined; }; export declare const GetResourceDeploymentDetailReason8: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason8 = ClosedEnum; export declare const CollectionIssueSeverity8: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity8 = ClosedEnum; export type CollectionIssue8 = { message: string; reason: GetResourceDeploymentDetailReason8; severity: CollectionIssueSeverity8; source: string; }; export declare const Health8: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health8 = ClosedEnum; export declare const Lifecycle8: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle8 = ClosedEnum; export type DataStatus8 = { collectionIssues: Array; health: Health8; lifecycle: Lifecycle8; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type WorkloadCondition1 = { lastTransitionTime?: Date | null | undefined; message?: string | null | undefined; reason?: string | null | undefined; status: string; type: string; }; export type Workload1 = { availableReplicas?: number | null | undefined; conditions: Array; desiredGeneration?: number | null | undefined; desiredReplicas?: number | null | undefined; observedGeneration?: number | null | undefined; readyReplicas?: number | null | undefined; rolloutReason?: string | null | undefined; updatedReplicas?: number | null | undefined; }; export type WorkloadUnion1 = Workload1 | any; export declare const WorkloadKind1: { readonly Deployment: "deployment"; readonly StatefulSet: "statefulSet"; readonly DaemonSet: "daemonSet"; readonly ReplicaSet: "replicaSet"; readonly Pod: "pod"; }; export type WorkloadKind1 = ClosedEnum; export type DataKubernetes1 = { cpu?: Cpu1 | any | null | undefined; events: Array; memory?: Memory1 | any | null | undefined; name: string; namespace: string; pods: Array; replicas: Replicas1; restarts?: number | null | undefined; status: DataStatus8; triggerCount: number; workload?: Workload1 | any | null | undefined; workloadKind: WorkloadKind1; backend: "kubernetes"; }; export declare const GetResourceDeploymentDetailReason7: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason7 = ClosedEnum; export declare const CollectionIssueSeverity7: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity7 = ClosedEnum; export type CollectionIssue7 = { message: string; reason: GetResourceDeploymentDetailReason7; severity: CollectionIssueSeverity7; source: string; }; export declare const Health7: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health7 = ClosedEnum; export declare const Lifecycle7: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle7 = ClosedEnum; export type DataStatus7 = { collectionIssues: Array; health: Health7; lifecycle: Lifecycle7; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureContainerApps1 = { appName: string; cpu?: number | null | undefined; environmentName?: string | null | undefined; ingressFqdn?: string | null | undefined; maxReplicas?: number | null | undefined; memory?: string | null | undefined; minReplicas?: number | null | undefined; provisioningState?: string | null | undefined; revision?: string | null | undefined; runningStatus?: string | null | undefined; status: DataStatus7; backend: "azureContainerApps"; }; export declare const GetResourceDeploymentDetailReason6: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason6 = ClosedEnum; export declare const CollectionIssueSeverity6: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity6 = ClosedEnum; export type CollectionIssue6 = { message: string; reason: GetResourceDeploymentDetailReason6; severity: CollectionIssueSeverity6; source: string; }; export declare const Health6: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health6 = ClosedEnum; export declare const Lifecycle6: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle6 = ClosedEnum; export type DataStatus6 = { collectionIssues: Array; health: Health6; lifecycle: Lifecycle6; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpCloudRun = { containerImage?: string | null | undefined; cpuLimit?: string | null | undefined; generation?: number | null | undefined; latestCreatedRevision?: string | null | undefined; latestReadyRevision?: string | null | undefined; maxInstanceCount?: number | null | undefined; memoryLimit?: string | null | undefined; minInstanceCount?: number | null | undefined; observedGeneration?: number | null | undefined; region?: string | null | undefined; service: string; status: DataStatus6; trafficCount: number; uri?: string | null | undefined; urls: Array; backend: "gcpCloudRun"; }; export declare const GetResourceDeploymentDetailReason5: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason5 = ClosedEnum; export declare const CollectionIssueSeverity5: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity5 = ClosedEnum; export type CollectionIssue5 = { message: string; reason: GetResourceDeploymentDetailReason5; severity: CollectionIssueSeverity5; source: string; }; export declare const Health5: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health5 = ClosedEnum; export declare const Lifecycle5: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle5 = ClosedEnum; export type DataStatus5 = { collectionIssues: Array; health: Health5; lifecycle: Lifecycle5; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsLambda = { codeSha256?: string | null | undefined; functionName: string; functionUrlAuthType?: string | null | undefined; functionUrlCorsPresent: boolean; lastModified?: string | null | undefined; lastUpdateStatus?: string | null | undefined; lastUpdateStatusReason?: string | null | undefined; lastUpdateStatusReasonCode?: string | null | undefined; layerCount: number; memorySizeMb?: number | null | undefined; packageType?: string | null | undefined; revisionId?: string | null | undefined; runtime?: string | null | undefined; state?: string | null | undefined; stateReason?: string | null | undefined; stateReasonCode?: string | null | undefined; status: DataStatus5; timeoutSeconds?: number | null | undefined; triggerCount: number; version?: string | null | undefined; backend: "awsLambda"; }; export type DataUnion2 = DataAwsLambda | DataGcpCloudRun | DataAzureContainerApps1 | DataKubernetes1 | DataLocal2; export type DataWorker = { data: DataAwsLambda | DataGcpCloudRun | DataAzureContainerApps1 | DataKubernetes1 | DataLocal2; resourceType: "worker"; }; export declare const GetResourceDeploymentDetailReason4: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason4 = ClosedEnum; export declare const CollectionIssueSeverity4: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity4 = ClosedEnum; export type CollectionIssue4 = { message: string; reason: GetResourceDeploymentDetailReason4; severity: CollectionIssueSeverity4; source: string; }; export declare const Health4: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health4 = ClosedEnum; export declare const Lifecycle4: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle4 = ClosedEnum; export type DataStatus4 = { collectionIssues: Array; health: Health4; lifecycle: Lifecycle4; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataLocal1 = { isDirectory?: boolean | null | undefined; modifiedAt?: Date | null | undefined; path: string; pathExists: boolean; readonly?: boolean | null | undefined; status: DataStatus4; backend: "local"; }; export declare const GetResourceDeploymentDetailReason3: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason3 = ClosedEnum; export declare const CollectionIssueSeverity3: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity3 = ClosedEnum; export type CollectionIssue3 = { message: string; reason: GetResourceDeploymentDetailReason3; severity: CollectionIssueSeverity3; source: string; }; export declare const Health3: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health3 = ClosedEnum; export declare const Lifecycle3: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle3 = ClosedEnum; export type DataStatus3 = { collectionIssues: Array; health: Health3; lifecycle: Lifecycle3; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAzureBlob = { accessTier?: string | null | undefined; accountKind?: string | null | undefined; allowBlobPublicAccess?: boolean | null | undefined; blobDeleteRetentionDays?: number | null | undefined; blobDeleteRetentionEnabled?: boolean | null | undefined; blobEncryptionEnabled?: boolean | null | undefined; blobVersioningEnabled?: boolean | null | undefined; changeFeedEnabled?: boolean | null | undefined; changeFeedRetentionDays?: number | null | undefined; containerDeleteRetentionDays?: number | null | undefined; containerDeleteRetentionEnabled?: boolean | null | undefined; containerPublicAccess?: string | null | undefined; encryptionKeySource?: string | null | undefined; fileEncryptionEnabled?: boolean | null | undefined; location?: string | null | undefined; name: string; primaryLocation?: string | null | undefined; provisioningState?: string | null | undefined; publicNetworkAccess?: string | null | undefined; queueEncryptionEnabled?: boolean | null | undefined; resourceGroup?: string | null | undefined; secondaryLocation?: string | null | undefined; skuName?: string | null | undefined; skuTier?: string | null | undefined; status: DataStatus3; statusOfPrimary?: string | null | undefined; statusOfSecondary?: string | null | undefined; storageAccountName?: string | null | undefined; tableEncryptionEnabled?: boolean | null | undefined; backend: "azureBlob"; }; export declare const GetResourceDeploymentDetailReason2: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason2 = ClosedEnum; export declare const CollectionIssueSeverity2: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity2 = ClosedEnum; export type CollectionIssue2 = { message: string; reason: GetResourceDeploymentDetailReason2; severity: CollectionIssueSeverity2; source: string; }; export declare const Health2: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health2 = ClosedEnum; export declare const Lifecycle2: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle2 = ClosedEnum; export type DataStatus2 = { collectionIssues: Array; health: Health2; lifecycle: Lifecycle2; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataGcpCloudStorage = { bucketId?: string | null | undefined; defaultKmsKeyName?: string | null | undefined; encryptionConfigPresent: boolean; lifecyclePresent: boolean; lifecycleRuleCount?: number | null | undefined; location?: string | null | undefined; locationType?: string | null | undefined; name: string; publicAccessPrevention?: string | null | undefined; retentionPeriod?: string | null | undefined; retentionPolicyEffectiveTime?: string | null | undefined; retentionPolicyIsLocked?: boolean | null | undefined; softDeleteEffectiveTime?: string | null | undefined; softDeleteRetentionDurationSeconds?: string | null | undefined; status: DataStatus2; storageClass?: string | null | undefined; uniformBucketLevelAccessEnabled?: boolean | null | undefined; uniformBucketLevelAccessLockedTime?: string | null | undefined; versioningEnabled?: boolean | null | undefined; backend: "gcpCloudStorage"; }; export declare const GetResourceDeploymentDetailReason1: { readonly Forbidden: "forbidden"; readonly NotInstalled: "not-installed"; readonly ApiUnavailable: "api-unavailable"; readonly CollectionFailed: "collection-failed"; readonly TimedOut: "timed-out"; }; export type GetResourceDeploymentDetailReason1 = ClosedEnum; export declare const CollectionIssueSeverity1: { readonly Info: "info"; readonly Warning: "warning"; readonly Error: "error"; }; export type CollectionIssueSeverity1 = ClosedEnum; export type CollectionIssue1 = { message: string; reason: GetResourceDeploymentDetailReason1; severity: CollectionIssueSeverity1; source: string; }; export declare const Health1: { readonly Unknown: "unknown"; readonly Healthy: "healthy"; readonly Degraded: "degraded"; readonly Unhealthy: "unhealthy"; }; export type Health1 = ClosedEnum; export declare const Lifecycle1: { readonly Unknown: "unknown"; readonly Creating: "creating"; readonly Updating: "updating"; readonly Running: "running"; readonly Scaling: "scaling"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Deleting: "deleting"; readonly Deleted: "deleted"; readonly Failed: "failed"; }; export type Lifecycle1 = ClosedEnum; export type DataStatus1 = { collectionIssues: Array; health: Health1; lifecycle: Lifecycle1; message?: string | null | undefined; partial: boolean; stale: boolean; }; export type DataAwsS3 = { blockPublicAcls?: boolean | null | undefined; blockPublicPolicy?: boolean | null | undefined; bucketAclPresent?: boolean | null | undefined; bucketLocation?: string | null | undefined; bucketPolicyPresent?: boolean | null | undefined; encryptionConfigPresent: boolean; encryptionEnabled?: boolean | null | undefined; ignorePublicAcls?: boolean | null | undefined; lifecyclePresent: boolean; lifecycleRuleCount?: number | null | undefined; name: string; publicAccessBlockPresent: boolean; region?: string | null | undefined; restrictPublicBuckets?: boolean | null | undefined; status: DataStatus1; versioningEnabled?: boolean | null | undefined; versioningStatus?: string | null | undefined; backend: "awsS3"; }; export type DataUnion1 = DataAwsS3 | DataGcpCloudStorage | DataAzureBlob | DataLocal1; export type DataStorage = { data: DataAwsS3 | DataGcpCloudStorage | DataAzureBlob | DataLocal1; resourceType: "storage"; }; export type DataUnion19 = DataStorage | DataWorker | DataContainer | DataDaemon | DataComputeCluster | DataKubernetesCluster | DataQueue | DataKv | DataPostgres | DataVault | DataServiceAccount | DataNetwork | DataRemoteStackManagement | DataArtifactRegistry | DataBuild | DataServiceActivation | DataAzureResourceGroup | DataAzureStorageAccount | DataAzureContainerAppsEnvironment | DataAzureServiceBusNamespace | DataAi | DataKey | DataSandbox; export declare const Format: { readonly Json: "json"; readonly Yaml: "yaml"; readonly Text: "text"; }; export type Format = ClosedEnum; export type Raw = { body: string; collectedAt: Date; format: Format; source: string; truncated: boolean; }; export type Heartbeat = { backend: BackendEnum; /** * Represents the target cloud platform. */ controllerPlatform: ControllerPlatform; data: DataStorage | DataWorker | DataContainer | DataDaemon | DataComputeCluster | DataKubernetesCluster | DataQueue | DataKv | DataPostgres | DataVault | DataServiceAccount | DataNetwork | DataRemoteStackManagement | DataArtifactRegistry | DataBuild | DataServiceActivation | DataAzureResourceGroup | DataAzureStorageAccount | DataAzureContainerAppsEnvironment | DataAzureServiceBusNamespace | DataAi | DataKey | DataSandbox; deploymentId?: string | null | undefined; observedAt: Date; raw: Array; /** * Alien resource id, such as the `alien.Container` or `alien.Storage` * * @remarks * resource id from the stack. */ resourceId: string; /** * Resource type identifier that determines the specific kind of resource. This field is used for polymorphic deserialization and resource-specific behavior. */ resourceType: string; }; export type HeartbeatAvailable = { status: "available"; deploymentId: string; resourceId: string; resourceType: string; backend: string; controllerPlatform: string; observedAt: Date; staleAt: Date; platformStale: boolean; heartbeat: Heartbeat; raw: Array; }; export type HeartbeatUnion = HeartbeatAvailable | HeartbeatMissing; /** * Latest heartbeat detail for one resource deployment. */ export type GetResourceDeploymentDetailResponse = { deployment: GetResourceDeploymentDetailDeployment; heartbeat: HeartbeatAvailable | HeartbeatMissing; }; /** @internal */ export declare const GetResourceDeploymentDetailArea$outboundSchema: z.ZodEnum; /** @internal */ export type GetResourceDeploymentDetailRequest$Outbound = { area: string; deploymentId: string; resourceId: string; project: string; }; /** @internal */ export declare const GetResourceDeploymentDetailRequest$outboundSchema: z.ZodType; export declare function getResourceDeploymentDetailRequestToJSON(getResourceDeploymentDetailRequest: GetResourceDeploymentDetailRequest): string; /** @internal */ export declare const GetResourceDeploymentDetailDeployment$inboundSchema: z.ZodType; export declare function getResourceDeploymentDetailDeploymentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HeartbeatMissing$inboundSchema: z.ZodType; export declare function heartbeatMissingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BackendEnum$inboundSchema: z.ZodEnum; /** @internal */ export declare const ControllerPlatform$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailReason74$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity74$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue74$inboundSchema: z.ZodType; export declare function collectionIssue74FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health77$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle77$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus77$inboundSchema: z.ZodType; export declare function dataStatus77FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal12$inboundSchema: z.ZodType; export declare function dataLocal12FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason73$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity73$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue73$inboundSchema: z.ZodType; export declare function collectionIssue73FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health76$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle76$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus76$inboundSchema: z.ZodType; export declare function dataStatus76FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataKubernetesPods$inboundSchema: z.ZodType; export declare function dataKubernetesPodsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason72$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity72$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue72$inboundSchema: z.ZodType; export declare function collectionIssue72FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health75$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle75$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus75$inboundSchema: z.ZodType; export declare function dataStatus75FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpAgentPlatform$inboundSchema: z.ZodType; export declare function dataGcpAgentPlatformFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason71$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity71$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue71$inboundSchema: z.ZodType; export declare function collectionIssue71FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health74$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle74$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus74$inboundSchema: z.ZodType; export declare function dataStatus74FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureSandboxGroup$inboundSchema: z.ZodType; export declare function dataAzureSandboxGroupFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason70$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity70$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue70$inboundSchema: z.ZodType; export declare function collectionIssue70FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health73$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle73$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus73$inboundSchema: z.ZodType; export declare function dataStatus73FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsMicrovm$inboundSchema: z.ZodType; export declare function dataAwsMicrovmFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion18$inboundSchema: z.ZodType; export declare function dataUnion18FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataSandbox$inboundSchema: z.ZodType; export declare function dataSandboxFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health72$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle72$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus72$inboundSchema: z.ZodType; export declare function dataStatus72FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data8$inboundSchema: z.ZodType; export declare function data8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureKeyVault2$inboundSchema: z.ZodType; export declare function dataAzureKeyVault2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health71$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle71$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus71$inboundSchema: z.ZodType; export declare function dataStatus71FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data7$inboundSchema: z.ZodType; export declare function data7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpCloudKms$inboundSchema: z.ZodType; export declare function dataGcpCloudKmsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health70$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle70$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus70$inboundSchema: z.ZodType; export declare function dataStatus70FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data6$inboundSchema: z.ZodType; export declare function data6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsKms$inboundSchema: z.ZodType; export declare function dataAwsKmsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion17$inboundSchema: z.ZodType; export declare function dataUnion17FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataKey$inboundSchema: z.ZodType; export declare function dataKeyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccessTest4$inboundSchema: z.ZodEnum; /** @internal */ export declare const AvailabilityEnum4$inboundSchema: z.ZodEnum; /** @internal */ export declare const BlockerEnum4$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailClientApi4$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailModel4$inboundSchema: z.ZodType; export declare function getResourceDeploymentDetailModel4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEnum4$inboundSchema: z.ZodEnum; /** @internal */ export declare const Availability4$inboundSchema: z.ZodType; export declare function availability4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AvailabilityUnion$inboundSchema: z.ZodType; export declare function availabilityUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason69$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity69$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue69$inboundSchema: z.ZodType; export declare function collectionIssue69FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health69$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle69$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus69$inboundSchema: z.ZodType; export declare function dataStatus69FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataExternal$inboundSchema: z.ZodType; export declare function dataExternalFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccessTest3$inboundSchema: z.ZodEnum; /** @internal */ export declare const AvailabilityEnum3$inboundSchema: z.ZodEnum; /** @internal */ export declare const BlockerEnum3$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailClientApi3$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailModel3$inboundSchema: z.ZodType; export declare function getResourceDeploymentDetailModel3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEnum3$inboundSchema: z.ZodEnum; /** @internal */ export declare const Availability3$inboundSchema: z.ZodType; export declare function availability3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason68$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity68$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue68$inboundSchema: z.ZodType; export declare function collectionIssue68FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health68$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle68$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus68$inboundSchema: z.ZodType; export declare function dataStatus68FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureFoundry$inboundSchema: z.ZodType; export declare function dataAzureFoundryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccessTest2$inboundSchema: z.ZodEnum; /** @internal */ export declare const AvailabilityEnum2$inboundSchema: z.ZodEnum; /** @internal */ export declare const BlockerEnum2$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailClientApi2$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailModel2$inboundSchema: z.ZodType; export declare function getResourceDeploymentDetailModel2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEnum2$inboundSchema: z.ZodEnum; /** @internal */ export declare const Availability2$inboundSchema: z.ZodType; export declare function availability2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason67$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity67$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue67$inboundSchema: z.ZodType; export declare function collectionIssue67FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health67$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle67$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus67$inboundSchema: z.ZodType; export declare function dataStatus67FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpVertex$inboundSchema: z.ZodType; export declare function dataGcpVertexFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccessTest1$inboundSchema: z.ZodEnum; /** @internal */ export declare const AvailabilityEnum1$inboundSchema: z.ZodEnum; /** @internal */ export declare const BlockerEnum1$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailClientApi1$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailModel1$inboundSchema: z.ZodType; export declare function getResourceDeploymentDetailModel1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEnum1$inboundSchema: z.ZodEnum; /** @internal */ export declare const Availability1$inboundSchema: z.ZodType; export declare function availability1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason66$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity66$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue66$inboundSchema: z.ZodType; export declare function collectionIssue66FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health66$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle66$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus66$inboundSchema: z.ZodType; export declare function dataStatus66FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsBedrock$inboundSchema: z.ZodType; export declare function dataAwsBedrockFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion16$inboundSchema: z.ZodType; export declare function dataUnion16FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAi$inboundSchema: z.ZodType; export declare function dataAiFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason65$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity65$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue65$inboundSchema: z.ZodType; export declare function collectionIssue65FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health65$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle65$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus65$inboundSchema: z.ZodType; export declare function dataStatus65FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data5$inboundSchema: z.ZodType; export declare function data5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureServiceBusNamespace$inboundSchema: z.ZodType; export declare function dataAzureServiceBusNamespaceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason64$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity64$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue64$inboundSchema: z.ZodType; export declare function collectionIssue64FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health64$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle64$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus64$inboundSchema: z.ZodType; export declare function dataStatus64FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadProfile$inboundSchema: z.ZodType; export declare function workloadProfileFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data4$inboundSchema: z.ZodType; export declare function data4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureContainerAppsEnvironment$inboundSchema: z.ZodType; export declare function dataAzureContainerAppsEnvironmentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PrimaryEndpoints$inboundSchema: z.ZodType; export declare function primaryEndpointsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SecondaryEndpoints$inboundSchema: z.ZodType; export declare function secondaryEndpointsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason63$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity63$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue63$inboundSchema: z.ZodType; export declare function collectionIssue63FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health63$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle63$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus63$inboundSchema: z.ZodType; export declare function dataStatus63FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data3$inboundSchema: z.ZodType; export declare function data3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureStorageAccount$inboundSchema: z.ZodType; export declare function dataAzureStorageAccountFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason62$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity62$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue62$inboundSchema: z.ZodType; export declare function collectionIssue62FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health62$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle62$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus62$inboundSchema: z.ZodType; export declare function dataStatus62FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data2$inboundSchema: z.ZodType; export declare function data2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureResourceGroup$inboundSchema: z.ZodType; export declare function dataAzureResourceGroupFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason61$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity61$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue61$inboundSchema: z.ZodType; export declare function collectionIssue61FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health61$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle61$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus61$inboundSchema: z.ZodType; export declare function dataStatus61FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureResourceProvider$inboundSchema: z.ZodType; export declare function dataAzureResourceProviderFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason60$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity60$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue60$inboundSchema: z.ZodType; export declare function collectionIssue60FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health60$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle60$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus60$inboundSchema: z.ZodType; export declare function dataStatus60FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpServiceUsage$inboundSchema: z.ZodType; export declare function dataGcpServiceUsageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion15$inboundSchema: z.ZodType; export declare function dataUnion15FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataServiceActivation$inboundSchema: z.ZodType; export declare function dataServiceActivationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject10$inboundSchema: z.ZodType; export declare function involvedObject10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion10$inboundSchema: z.ZodType; export declare function involvedObjectUnion10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent10$inboundSchema: z.ZodType; export declare function sourceEvent10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion10$inboundSchema: z.ZodType; export declare function sourceUnion10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event13$inboundSchema: z.ZodType; export declare function event13FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason59$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity59$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue59$inboundSchema: z.ZodType; export declare function collectionIssue59FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health59$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle59$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus59$inboundSchema: z.ZodType; export declare function dataStatus59FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataKubernetesJob$inboundSchema: z.ZodType; export declare function dataKubernetesJobFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason58$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity58$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue58$inboundSchema: z.ZodType; export declare function collectionIssue58FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health58$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle58$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus58$inboundSchema: z.ZodType; export declare function dataStatus58FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureContainerApps2$inboundSchema: z.ZodType; export declare function dataAzureContainerApps2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason57$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity57$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue57$inboundSchema: z.ZodType; export declare function collectionIssue57FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health57$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle57$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus57$inboundSchema: z.ZodType; export declare function dataStatus57FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpCloudBuild$inboundSchema: z.ZodType; export declare function dataGcpCloudBuildFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason56$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity56$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue56$inboundSchema: z.ZodType; export declare function collectionIssue56FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health56$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle56$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus56$inboundSchema: z.ZodType; export declare function dataStatus56FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsCodeBuild$inboundSchema: z.ZodType; export declare function dataAwsCodeBuildFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion14$inboundSchema: z.ZodType; export declare function dataUnion14FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataBuild$inboundSchema: z.ZodType; export declare function dataBuildFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason55$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity55$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue55$inboundSchema: z.ZodType; export declare function collectionIssue55FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health55$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle55$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus55$inboundSchema: z.ZodType; export declare function dataStatus55FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal11$inboundSchema: z.ZodType; export declare function dataLocal11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason54$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity54$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue54$inboundSchema: z.ZodType; export declare function collectionIssue54FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health54$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle54$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus54$inboundSchema: z.ZodType; export declare function dataStatus54FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureContainerRegistry$inboundSchema: z.ZodType; export declare function dataAzureContainerRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason53$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity53$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue53$inboundSchema: z.ZodType; export declare function collectionIssue53FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health53$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle53$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus53$inboundSchema: z.ZodType; export declare function dataStatus53FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpArtifactRegistry$inboundSchema: z.ZodType; export declare function dataGcpArtifactRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailRepository$inboundSchema: z.ZodType; export declare function getResourceDeploymentDetailRepositoryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason52$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity52$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue52$inboundSchema: z.ZodType; export declare function collectionIssue52FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health52$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle52$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus52$inboundSchema: z.ZodType; export declare function dataStatus52FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsEcr$inboundSchema: z.ZodType; export declare function dataAwsEcrFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion13$inboundSchema: z.ZodType; export declare function dataUnion13FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataArtifactRegistry$inboundSchema: z.ZodType; export declare function dataArtifactRegistryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason51$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity51$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue51$inboundSchema: z.ZodType; export declare function collectionIssue51FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health51$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle51$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus51$inboundSchema: z.ZodType; export declare function dataStatus51FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureManagedIdentity2$inboundSchema: z.ZodType; export declare function dataAzureManagedIdentity2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason50$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity50$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue50$inboundSchema: z.ZodType; export declare function collectionIssue50FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health50$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle50$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus50$inboundSchema: z.ZodType; export declare function dataStatus50FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpServiceAccount2$inboundSchema: z.ZodType; export declare function dataGcpServiceAccount2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason49$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity49$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue49$inboundSchema: z.ZodType; export declare function collectionIssue49FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health49$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle49$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus49$inboundSchema: z.ZodType; export declare function dataStatus49FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsIamRole2$inboundSchema: z.ZodType; export declare function dataAwsIamRole2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion12$inboundSchema: z.ZodType; export declare function dataUnion12FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataRemoteStackManagement$inboundSchema: z.ZodType; export declare function dataRemoteStackManagementFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason48$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity48$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue48$inboundSchema: z.ZodType; export declare function collectionIssue48FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health48$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle48$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus48$inboundSchema: z.ZodType; export declare function dataStatus48FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureVnet$inboundSchema: z.ZodType; export declare function dataAzureVnetFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason47$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity47$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue47$inboundSchema: z.ZodType; export declare function collectionIssue47FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health47$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle47$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus47$inboundSchema: z.ZodType; export declare function dataStatus47FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpVpc$inboundSchema: z.ZodType; export declare function dataGcpVpcFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason46$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity46$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue46$inboundSchema: z.ZodType; export declare function collectionIssue46FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health46$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle46$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus46$inboundSchema: z.ZodType; export declare function dataStatus46FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsVpc$inboundSchema: z.ZodType; export declare function dataAwsVpcFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion11$inboundSchema: z.ZodType; export declare function dataUnion11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataNetwork$inboundSchema: z.ZodType; export declare function dataNetworkFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason45$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity45$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue45$inboundSchema: z.ZodType; export declare function collectionIssue45FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health45$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle45$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus45$inboundSchema: z.ZodType; export declare function dataStatus45FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal10$inboundSchema: z.ZodType; export declare function dataLocal10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason44$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity44$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue44$inboundSchema: z.ZodType; export declare function collectionIssue44FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health44$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle44$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus44$inboundSchema: z.ZodType; export declare function dataStatus44FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureManagedIdentity1$inboundSchema: z.ZodType; export declare function dataAzureManagedIdentity1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason43$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity43$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue43$inboundSchema: z.ZodType; export declare function collectionIssue43FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health43$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle43$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus43$inboundSchema: z.ZodType; export declare function dataStatus43FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpServiceAccount1$inboundSchema: z.ZodType; export declare function dataGcpServiceAccount1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason42$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity42$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue42$inboundSchema: z.ZodType; export declare function collectionIssue42FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health42$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle42$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus42$inboundSchema: z.ZodType; export declare function dataStatus42FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsIamRole1$inboundSchema: z.ZodType; export declare function dataAwsIamRole1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion10$inboundSchema: z.ZodType; export declare function dataUnion10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataServiceAccount$inboundSchema: z.ZodType; export declare function dataServiceAccountFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason41$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity41$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue41$inboundSchema: z.ZodType; export declare function collectionIssue41FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health41$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle41$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus41$inboundSchema: z.ZodType; export declare function dataStatus41FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal9$inboundSchema: z.ZodType; export declare function dataLocal9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason40$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity40$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue40$inboundSchema: z.ZodType; export declare function collectionIssue40FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health40$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle40$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus40$inboundSchema: z.ZodType; export declare function dataStatus40FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataKubernetesSecret$inboundSchema: z.ZodType; export declare function dataKubernetesSecretFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason39$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity39$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue39$inboundSchema: z.ZodType; export declare function collectionIssue39FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health39$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle39$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus39$inboundSchema: z.ZodType; export declare function dataStatus39FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureKeyVault1$inboundSchema: z.ZodType; export declare function dataAzureKeyVault1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason38$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity38$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue38$inboundSchema: z.ZodType; export declare function collectionIssue38FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health38$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle38$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus38$inboundSchema: z.ZodType; export declare function dataStatus38FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpSecretManager$inboundSchema: z.ZodType; export declare function dataGcpSecretManagerFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason37$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity37$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue37$inboundSchema: z.ZodType; export declare function collectionIssue37FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health37$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle37$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus37$inboundSchema: z.ZodType; export declare function dataStatus37FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsParameterStore$inboundSchema: z.ZodType; export declare function dataAwsParameterStoreFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion9$inboundSchema: z.ZodType; export declare function dataUnion9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataVault$inboundSchema: z.ZodType; export declare function dataVaultFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason36$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity36$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue36$inboundSchema: z.ZodType; export declare function collectionIssue36FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health36$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle36$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus36$inboundSchema: z.ZodType; export declare function dataStatus36FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal8$inboundSchema: z.ZodType; export declare function dataLocal8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason35$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity35$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue35$inboundSchema: z.ZodType; export declare function collectionIssue35FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health35$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle35$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus35$inboundSchema: z.ZodType; export declare function dataStatus35FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataFlexibleServer$inboundSchema: z.ZodType; export declare function dataFlexibleServerFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason34$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity34$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue34$inboundSchema: z.ZodType; export declare function collectionIssue34FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health34$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle34$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus34$inboundSchema: z.ZodType; export declare function dataStatus34FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataCloudSQL$inboundSchema: z.ZodType; export declare function dataCloudSQLFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason33$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity33$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue33$inboundSchema: z.ZodType; export declare function collectionIssue33FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health33$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle33$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus33$inboundSchema: z.ZodType; export declare function dataStatus33FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAurora$inboundSchema: z.ZodType; export declare function dataAuroraFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion8$inboundSchema: z.ZodType; export declare function dataUnion8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataPostgres$inboundSchema: z.ZodType; export declare function dataPostgresFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason32$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity32$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue32$inboundSchema: z.ZodType; export declare function collectionIssue32FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health32$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle32$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus32$inboundSchema: z.ZodType; export declare function dataStatus32FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal7$inboundSchema: z.ZodType; export declare function dataLocal7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason31$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity31$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue31$inboundSchema: z.ZodType; export declare function collectionIssue31FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health31$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle31$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus31$inboundSchema: z.ZodType; export declare function dataStatus31FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureTable$inboundSchema: z.ZodType; export declare function dataAzureTableFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason30$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity30$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue30$inboundSchema: z.ZodType; export declare function collectionIssue30FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health30$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle30$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus30$inboundSchema: z.ZodType; export declare function dataStatus30FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpFirestore$inboundSchema: z.ZodType; export declare function dataGcpFirestoreFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const KeySchema$inboundSchema: z.ZodType; export declare function keySchemaFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason29$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity29$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue29$inboundSchema: z.ZodType; export declare function collectionIssue29FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health29$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle29$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus29$inboundSchema: z.ZodType; export declare function dataStatus29FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsDynamoDb$inboundSchema: z.ZodType; export declare function dataAwsDynamoDbFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion7$inboundSchema: z.ZodType; export declare function dataUnion7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataKv$inboundSchema: z.ZodType; export declare function dataKvFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason28$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity28$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue28$inboundSchema: z.ZodType; export declare function collectionIssue28FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health28$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle28$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus28$inboundSchema: z.ZodType; export declare function dataStatus28FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal6$inboundSchema: z.ZodType; export declare function dataLocal6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason27$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity27$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue27$inboundSchema: z.ZodType; export declare function collectionIssue27FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health27$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle27$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus27$inboundSchema: z.ZodType; export declare function dataStatus27FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureServiceBus$inboundSchema: z.ZodType; export declare function dataAzureServiceBusFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason26$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity26$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue26$inboundSchema: z.ZodType; export declare function collectionIssue26FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health26$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle26$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus26$inboundSchema: z.ZodType; export declare function dataStatus26FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpPubSub$inboundSchema: z.ZodType; export declare function dataGcpPubSubFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason25$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity25$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue25$inboundSchema: z.ZodType; export declare function collectionIssue25FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health25$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle25$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus25$inboundSchema: z.ZodType; export declare function dataStatus25FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsSqs$inboundSchema: z.ZodType; export declare function dataAwsSqsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion6$inboundSchema: z.ZodType; export declare function dataUnion6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataQueue$inboundSchema: z.ZodType; export declare function dataQueueFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit11$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu11$inboundSchema: z.ZodType; export declare function cpu11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion11$inboundSchema: z.ZodType; export declare function cpuUnion11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject9$inboundSchema: z.ZodType; export declare function involvedObject9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion9$inboundSchema: z.ZodType; export declare function involvedObjectUnion9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent9$inboundSchema: z.ZodType; export declare function sourceEvent9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion9$inboundSchema: z.ZodType; export declare function sourceUnion9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event12$inboundSchema: z.ZodType; export declare function event12FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit11$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory11$inboundSchema: z.ZodType; export declare function memory11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion11$inboundSchema: z.ZodType; export declare function memoryUnion11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const NodeCounts$inboundSchema: z.ZodType; export declare function nodeCountsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuAllocatableUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuAllocatable$inboundSchema: z.ZodType; export declare function cpuAllocatableFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AllocatableCpuUnion$inboundSchema: z.ZodType; export declare function allocatableCpuUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryAllocatableUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryAllocatable$inboundSchema: z.ZodType; export declare function memoryAllocatableFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AllocatableMemoryUnion$inboundSchema: z.ZodType; export declare function allocatableMemoryUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Allocatable$inboundSchema: z.ZodType; export declare function allocatableFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuCapacityUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuCapacity$inboundSchema: z.ZodType; export declare function cpuCapacityFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityCpuUnion$inboundSchema: z.ZodType; export declare function capacityCpuUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryCapacityUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryCapacity$inboundSchema: z.ZodType; export declare function memoryCapacityFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityMemoryUnion$inboundSchema: z.ZodType; export declare function capacityMemoryUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Capacity$inboundSchema: z.ZodType; export declare function capacityFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const NodeStatusCondition$inboundSchema: z.ZodType; export declare function nodeStatusConditionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UsageCpuUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const UsageCpu$inboundSchema: z.ZodType; export declare function usageCpuFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UsageCpuUnion$inboundSchema: z.ZodType; export declare function usageCpuUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UsageMemoryUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const UsageMemory$inboundSchema: z.ZodType; export declare function usageMemoryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UsageMemoryUnion$inboundSchema: z.ZodType; export declare function usageMemoryUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Usage$inboundSchema: z.ZodType; export declare function usageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UsageUnion$inboundSchema: z.ZodType; export declare function usageUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const NodeStatus$inboundSchema: z.ZodType; export declare function nodeStatusFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PodCounts$inboundSchema: z.ZodType; export declare function podCountsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason24$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity24$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue24$inboundSchema: z.ZodType; export declare function collectionIssue24FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health24$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle24$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus24$inboundSchema: z.ZodType; export declare function dataStatus24FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Data1$inboundSchema: z.ZodType; export declare function data1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataKubernetesCluster$inboundSchema: z.ZodType; export declare function dataKubernetesClusterFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Nodes5$inboundSchema: z.ZodType; export declare function nodes5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason23$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity23$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue23$inboundSchema: z.ZodType; export declare function collectionIssue23FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health23$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle23$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus23$inboundSchema: z.ZodType; export declare function dataStatus23FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal5$inboundSchema: z.ZodType; export declare function dataLocal5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Category4$inboundSchema: z.ZodEnum; /** @internal */ export declare const CapacityBlocker4$inboundSchema: z.ZodType; export declare function capacityBlocker4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityBlockerUnion4$inboundSchema: z.ZodType; export declare function capacityBlockerUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressBlocker4$inboundSchema: z.ZodType; export declare function drainProgressBlocker4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressStatus4$inboundSchema: z.ZodEnum; /** @internal */ export declare const DrainProgress4$inboundSchema: z.ZodType; export declare function drainProgress4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressUnion4$inboundSchema: z.ZodType; export declare function drainProgressUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnit4$inboundSchema: z.ZodEnum; /** @internal */ export declare const Utilization4$inboundSchema: z.ZodType; export declare function utilization4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnion4$inboundSchema: z.ZodType; export declare function utilizationUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Recommendation4$inboundSchema: z.ZodType; export declare function recommendation4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RecommendationUnion4$inboundSchema: z.ZodType; export declare function recommendationUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityGroup4$inboundSchema: z.ZodType; export declare function capacityGroup4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit10$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu10$inboundSchema: z.ZodType; export declare function cpu10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion10$inboundSchema: z.ZodType; export declare function cpuUnion10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainBlocker$inboundSchema: z.ZodType; export declare function drainBlockerFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Machine$inboundSchema: z.ZodType; export declare function machineFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit10$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory10$inboundSchema: z.ZodType; export declare function memory10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion10$inboundSchema: z.ZodType; export declare function memoryUnion10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Nodes4$inboundSchema: z.ZodType; export declare function nodes4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason22$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity22$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue22$inboundSchema: z.ZodType; export declare function collectionIssue22FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health22$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle22$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus22$inboundSchema: z.ZodType; export declare function dataStatus22FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataMachines2$inboundSchema: z.ZodType; export declare function dataMachines2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Category3$inboundSchema: z.ZodEnum; /** @internal */ export declare const CapacityBlocker3$inboundSchema: z.ZodType; export declare function capacityBlocker3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityBlockerUnion3$inboundSchema: z.ZodType; export declare function capacityBlockerUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressBlocker3$inboundSchema: z.ZodType; export declare function drainProgressBlocker3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressStatus3$inboundSchema: z.ZodEnum; /** @internal */ export declare const DrainProgress3$inboundSchema: z.ZodType; export declare function drainProgress3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressUnion3$inboundSchema: z.ZodType; export declare function drainProgressUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnit3$inboundSchema: z.ZodEnum; /** @internal */ export declare const Utilization3$inboundSchema: z.ZodType; export declare function utilization3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnion3$inboundSchema: z.ZodType; export declare function utilizationUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Recommendation3$inboundSchema: z.ZodType; export declare function recommendation3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RecommendationUnion3$inboundSchema: z.ZodType; export declare function recommendationUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityGroup3$inboundSchema: z.ZodType; export declare function capacityGroup3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit9$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu9$inboundSchema: z.ZodType; export declare function cpu9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion9$inboundSchema: z.ZodType; export declare function cpuUnion9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit9$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory9$inboundSchema: z.ZodType; export declare function memory9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion9$inboundSchema: z.ZodType; export declare function memoryUnion9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Nodes3$inboundSchema: z.ZodType; export declare function nodes3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProviderFleet3$inboundSchema: z.ZodType; export declare function providerFleet3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason21$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity21$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue21$inboundSchema: z.ZodType; export declare function collectionIssue21FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health21$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle21$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus21$inboundSchema: z.ZodType; export declare function dataStatus21FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzure2$inboundSchema: z.ZodType; export declare function dataAzure2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Category2$inboundSchema: z.ZodEnum; /** @internal */ export declare const CapacityBlocker2$inboundSchema: z.ZodType; export declare function capacityBlocker2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityBlockerUnion2$inboundSchema: z.ZodType; export declare function capacityBlockerUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressBlocker2$inboundSchema: z.ZodType; export declare function drainProgressBlocker2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressStatus2$inboundSchema: z.ZodEnum; /** @internal */ export declare const DrainProgress2$inboundSchema: z.ZodType; export declare function drainProgress2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressUnion2$inboundSchema: z.ZodType; export declare function drainProgressUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnit2$inboundSchema: z.ZodEnum; /** @internal */ export declare const Utilization2$inboundSchema: z.ZodType; export declare function utilization2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnion2$inboundSchema: z.ZodType; export declare function utilizationUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Recommendation2$inboundSchema: z.ZodType; export declare function recommendation2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RecommendationUnion2$inboundSchema: z.ZodType; export declare function recommendationUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityGroup2$inboundSchema: z.ZodType; export declare function capacityGroup2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit8$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu8$inboundSchema: z.ZodType; export declare function cpu8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion8$inboundSchema: z.ZodType; export declare function cpuUnion8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit8$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory8$inboundSchema: z.ZodType; export declare function memory8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion8$inboundSchema: z.ZodType; export declare function memoryUnion8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Nodes2$inboundSchema: z.ZodType; export declare function nodes2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProviderFleet2$inboundSchema: z.ZodType; export declare function providerFleet2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason20$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity20$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue20$inboundSchema: z.ZodType; export declare function collectionIssue20FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health20$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle20$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus20$inboundSchema: z.ZodType; export declare function dataStatus20FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcp2$inboundSchema: z.ZodType; export declare function dataGcp2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Category1$inboundSchema: z.ZodEnum; /** @internal */ export declare const CapacityBlocker1$inboundSchema: z.ZodType; export declare function capacityBlocker1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityBlockerUnion1$inboundSchema: z.ZodType; export declare function capacityBlockerUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressBlocker1$inboundSchema: z.ZodType; export declare function drainProgressBlocker1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressStatus1$inboundSchema: z.ZodEnum; /** @internal */ export declare const DrainProgress1$inboundSchema: z.ZodType; export declare function drainProgress1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DrainProgressUnion1$inboundSchema: z.ZodType; export declare function drainProgressUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnit1$inboundSchema: z.ZodEnum; /** @internal */ export declare const Utilization1$inboundSchema: z.ZodType; export declare function utilization1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UtilizationUnion1$inboundSchema: z.ZodType; export declare function utilizationUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Recommendation1$inboundSchema: z.ZodType; export declare function recommendation1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RecommendationUnion1$inboundSchema: z.ZodType; export declare function recommendationUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CapacityGroup1$inboundSchema: z.ZodType; export declare function capacityGroup1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit7$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu7$inboundSchema: z.ZodType; export declare function cpu7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion7$inboundSchema: z.ZodType; export declare function cpuUnion7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit7$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory7$inboundSchema: z.ZodType; export declare function memory7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion7$inboundSchema: z.ZodType; export declare function memoryUnion7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Nodes1$inboundSchema: z.ZodType; export declare function nodes1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProviderFleet1$inboundSchema: z.ZodType; export declare function providerFleet1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason19$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity19$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue19$inboundSchema: z.ZodType; export declare function collectionIssue19FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health19$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle19$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus19$inboundSchema: z.ZodType; export declare function dataStatus19FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAws2$inboundSchema: z.ZodType; export declare function dataAws2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion5$inboundSchema: z.ZodType; export declare function dataUnion5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataComputeCluster$inboundSchema: z.ZodType; export declare function dataComputeClusterFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceCpuUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const DaemonInstanceCpu$inboundSchema: z.ZodType; export declare function daemonInstanceCpuFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceCpuUnion5$inboundSchema: z.ZodType; export declare function daemonInstanceCpuUnion5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceKind$inboundSchema: z.ZodEnum; /** @internal */ export declare const DaemonInstanceMemoryUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const DaemonInstanceMemory$inboundSchema: z.ZodType; export declare function daemonInstanceMemoryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceMemoryUnion5$inboundSchema: z.ZodType; export declare function daemonInstanceMemoryUnion5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstance5$inboundSchema: z.ZodType; export declare function daemonInstance5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceUnion$inboundSchema: z.ZodType; export declare function daemonInstanceUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const EventSeverity3$inboundSchema: z.ZodEnum; /** @internal */ export declare const Subject3$inboundSchema: z.ZodType; export declare function subject3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SubjectUnion3$inboundSchema: z.ZodType; export declare function subjectUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event11$inboundSchema: z.ZodType; export declare function event11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason18$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity18$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue18$inboundSchema: z.ZodType; export declare function collectionIssue18FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health18$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle18$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus18$inboundSchema: z.ZodType; export declare function dataStatus18FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal4$inboundSchema: z.ZodType; export declare function dataLocal4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit6$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu6$inboundSchema: z.ZodType; export declare function cpu6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion6$inboundSchema: z.ZodType; export declare function cpuUnion6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject8$inboundSchema: z.ZodType; export declare function involvedObject8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion8$inboundSchema: z.ZodType; export declare function involvedObjectUnion8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent8$inboundSchema: z.ZodType; export declare function sourceEvent8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion8$inboundSchema: z.ZodType; export declare function sourceUnion8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event10$inboundSchema: z.ZodType; export declare function event10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit6$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory6$inboundSchema: z.ZodType; export declare function memory6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion6$inboundSchema: z.ZodType; export declare function memoryUnion6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuPodUnit3$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuPod3$inboundSchema: z.ZodType; export declare function cpuPod3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PodCpuUnion3$inboundSchema: z.ZodType; export declare function podCpuUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryPodUnit3$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryPod3$inboundSchema: z.ZodType; export declare function memoryPod3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PodMemoryUnion3$inboundSchema: z.ZodType; export declare function podMemoryUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const OwnerReference3$inboundSchema: z.ZodType; export declare function ownerReference3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Pod3$inboundSchema: z.ZodType; export declare function pod3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Replicas4$inboundSchema: z.ZodType; export declare function replicas4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason17$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity17$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue17$inboundSchema: z.ZodType; export declare function collectionIssue17FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health17$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle17$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus17$inboundSchema: z.ZodType; export declare function dataStatus17FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadCondition3$inboundSchema: z.ZodType; export declare function workloadCondition3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Workload3$inboundSchema: z.ZodType; export declare function workload3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadUnion3$inboundSchema: z.ZodType; export declare function workloadUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataKubernetes3$inboundSchema: z.ZodType; export declare function dataKubernetes3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuDaemonInstanceUnit4$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuDaemonInstance4$inboundSchema: z.ZodType; export declare function cpuDaemonInstance4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceCpuUnion4$inboundSchema: z.ZodType; export declare function daemonInstanceCpuUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryDaemonInstanceUnit4$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryDaemonInstance4$inboundSchema: z.ZodType; export declare function memoryDaemonInstance4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceMemoryUnion4$inboundSchema: z.ZodType; export declare function daemonInstanceMemoryUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstance4$inboundSchema: z.ZodType; export declare function daemonInstance4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject7$inboundSchema: z.ZodType; export declare function involvedObject7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion7$inboundSchema: z.ZodType; export declare function involvedObjectUnion7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent7$inboundSchema: z.ZodType; export declare function sourceEvent7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion7$inboundSchema: z.ZodType; export declare function sourceUnion7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event9$inboundSchema: z.ZodType; export declare function event9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason16$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity16$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue16$inboundSchema: z.ZodType; export declare function collectionIssue16FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health16$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle16$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus16$inboundSchema: z.ZodType; export declare function dataStatus16FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataMachines1$inboundSchema: z.ZodType; export declare function dataMachines1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuDaemonInstanceUnit3$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuDaemonInstance3$inboundSchema: z.ZodType; export declare function cpuDaemonInstance3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceCpuUnion3$inboundSchema: z.ZodType; export declare function daemonInstanceCpuUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryDaemonInstanceUnit3$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryDaemonInstance3$inboundSchema: z.ZodType; export declare function memoryDaemonInstance3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceMemoryUnion3$inboundSchema: z.ZodType; export declare function daemonInstanceMemoryUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstance3$inboundSchema: z.ZodType; export declare function daemonInstance3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject6$inboundSchema: z.ZodType; export declare function involvedObject6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion6$inboundSchema: z.ZodType; export declare function involvedObjectUnion6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent6$inboundSchema: z.ZodType; export declare function sourceEvent6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion6$inboundSchema: z.ZodType; export declare function sourceUnion6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event8$inboundSchema: z.ZodType; export declare function event8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason15$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity15$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue15$inboundSchema: z.ZodType; export declare function collectionIssue15FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health15$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle15$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus15$inboundSchema: z.ZodType; export declare function dataStatus15FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzure1$inboundSchema: z.ZodType; export declare function dataAzure1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuDaemonInstanceUnit2$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuDaemonInstance2$inboundSchema: z.ZodType; export declare function cpuDaemonInstance2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceCpuUnion2$inboundSchema: z.ZodType; export declare function daemonInstanceCpuUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryDaemonInstanceUnit2$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryDaemonInstance2$inboundSchema: z.ZodType; export declare function memoryDaemonInstance2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceMemoryUnion2$inboundSchema: z.ZodType; export declare function daemonInstanceMemoryUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstance2$inboundSchema: z.ZodType; export declare function daemonInstance2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject5$inboundSchema: z.ZodType; export declare function involvedObject5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion5$inboundSchema: z.ZodType; export declare function involvedObjectUnion5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent5$inboundSchema: z.ZodType; export declare function sourceEvent5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion5$inboundSchema: z.ZodType; export declare function sourceUnion5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event7$inboundSchema: z.ZodType; export declare function event7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason14$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity14$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue14$inboundSchema: z.ZodType; export declare function collectionIssue14FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health14$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle14$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus14$inboundSchema: z.ZodType; export declare function dataStatus14FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcp1$inboundSchema: z.ZodType; export declare function dataGcp1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuDaemonInstanceUnit1$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuDaemonInstance1$inboundSchema: z.ZodType; export declare function cpuDaemonInstance1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceCpuUnion1$inboundSchema: z.ZodType; export declare function daemonInstanceCpuUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryDaemonInstanceUnit1$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryDaemonInstance1$inboundSchema: z.ZodType; export declare function memoryDaemonInstance1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstanceMemoryUnion1$inboundSchema: z.ZodType; export declare function daemonInstanceMemoryUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DaemonInstance1$inboundSchema: z.ZodType; export declare function daemonInstance1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject4$inboundSchema: z.ZodType; export declare function involvedObject4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion4$inboundSchema: z.ZodType; export declare function involvedObjectUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent4$inboundSchema: z.ZodType; export declare function sourceEvent4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion4$inboundSchema: z.ZodType; export declare function sourceUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event6$inboundSchema: z.ZodType; export declare function event6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason13$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity13$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue13$inboundSchema: z.ZodType; export declare function collectionIssue13FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health13$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle13$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus13$inboundSchema: z.ZodType; export declare function dataStatus13FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAws1$inboundSchema: z.ZodType; export declare function dataAws1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion4$inboundSchema: z.ZodType; export declare function dataUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataDaemon$inboundSchema: z.ZodType; export declare function dataDaemonFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ContainerUnitCpuUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const ContainerUnitCpu$inboundSchema: z.ZodType; export declare function containerUnitCpuFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ContainerUnitCpuUnion$inboundSchema: z.ZodType; export declare function containerUnitCpuUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ContainerUnitKind$inboundSchema: z.ZodEnum; /** @internal */ export declare const ContainerUnitMemoryUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const ContainerUnitMemory$inboundSchema: z.ZodType; export declare function containerUnitMemoryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ContainerUnitMemoryUnion$inboundSchema: z.ZodType; export declare function containerUnitMemoryUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ContainerUnit$inboundSchema: z.ZodType; export declare function containerUnitFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ContainerUnitUnion$inboundSchema: z.ZodType; export declare function containerUnitUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit5$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu5$inboundSchema: z.ZodType; export declare function cpu5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion5$inboundSchema: z.ZodType; export declare function cpuUnion5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const EventSeverity2$inboundSchema: z.ZodEnum; /** @internal */ export declare const Subject2$inboundSchema: z.ZodType; export declare function subject2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SubjectUnion2$inboundSchema: z.ZodType; export declare function subjectUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event5$inboundSchema: z.ZodType; export declare function event5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit5$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory5$inboundSchema: z.ZodType; export declare function memory5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion5$inboundSchema: z.ZodType; export declare function memoryUnion5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason12$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity12$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue12$inboundSchema: z.ZodType; export declare function collectionIssue12FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health12$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle12$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus12$inboundSchema: z.ZodType; export declare function dataStatus12FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal3$inboundSchema: z.ZodType; export declare function dataLocal3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit4$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu4$inboundSchema: z.ZodType; export declare function cpu4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion4$inboundSchema: z.ZodType; export declare function cpuUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject3$inboundSchema: z.ZodType; export declare function involvedObject3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion3$inboundSchema: z.ZodType; export declare function involvedObjectUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent3$inboundSchema: z.ZodType; export declare function sourceEvent3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion3$inboundSchema: z.ZodType; export declare function sourceUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event4$inboundSchema: z.ZodType; export declare function event4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit4$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory4$inboundSchema: z.ZodType; export declare function memory4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion4$inboundSchema: z.ZodType; export declare function memoryUnion4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuPodUnit2$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuPod2$inboundSchema: z.ZodType; export declare function cpuPod2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PodCpuUnion2$inboundSchema: z.ZodType; export declare function podCpuUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryPodUnit2$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryPod2$inboundSchema: z.ZodType; export declare function memoryPod2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PodMemoryUnion2$inboundSchema: z.ZodType; export declare function podMemoryUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const OwnerReference2$inboundSchema: z.ZodType; export declare function ownerReference2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Pod2$inboundSchema: z.ZodType; export declare function pod2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Replicas3$inboundSchema: z.ZodType; export declare function replicas3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason11$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity11$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue11$inboundSchema: z.ZodType; export declare function collectionIssue11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health11$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle11$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus11$inboundSchema: z.ZodType; export declare function dataStatus11FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadCondition2$inboundSchema: z.ZodType; export declare function workloadCondition2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Workload2$inboundSchema: z.ZodType; export declare function workload2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadUnion2$inboundSchema: z.ZodType; export declare function workloadUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadKind2$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataKubernetes2$inboundSchema: z.ZodType; export declare function dataKubernetes2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit3$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu3$inboundSchema: z.ZodType; export declare function cpu3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion3$inboundSchema: z.ZodType; export declare function cpuUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject2$inboundSchema: z.ZodType; export declare function involvedObject2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion2$inboundSchema: z.ZodType; export declare function involvedObjectUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent2$inboundSchema: z.ZodType; export declare function sourceEvent2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion2$inboundSchema: z.ZodType; export declare function sourceUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event3$inboundSchema: z.ZodType; export declare function event3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit3$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory3$inboundSchema: z.ZodType; export declare function memory3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion3$inboundSchema: z.ZodType; export declare function memoryUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuReplicaUnitUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuReplicaUnit$inboundSchema: z.ZodType; export declare function cpuReplicaUnitFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ReplicaUnitCpuUnion$inboundSchema: z.ZodType; export declare function replicaUnitCpuUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryReplicaUnitUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryReplicaUnit$inboundSchema: z.ZodType; export declare function memoryReplicaUnitFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ReplicaUnitMemoryUnion$inboundSchema: z.ZodType; export declare function replicaUnitMemoryUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ReplicaUnit$inboundSchema: z.ZodType; export declare function replicaUnitFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Replicas2$inboundSchema: z.ZodType; export declare function replicas2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SchedulingMode$inboundSchema: z.ZodEnum; /** @internal */ export declare const GetResourceDeploymentDetailReason10$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity10$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue10$inboundSchema: z.ZodType; export declare function collectionIssue10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health10$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle10$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus10$inboundSchema: z.ZodType; export declare function dataStatus10FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataHorizonPlatform$inboundSchema: z.ZodType; export declare function dataHorizonPlatformFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion3$inboundSchema: z.ZodType; export declare function dataUnion3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataContainer$inboundSchema: z.ZodType; export declare function dataContainerFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit2$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu2$inboundSchema: z.ZodType; export declare function cpu2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion2$inboundSchema: z.ZodType; export declare function cpuUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const EventSeverity1$inboundSchema: z.ZodEnum; /** @internal */ export declare const Subject1$inboundSchema: z.ZodType; export declare function subject1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SubjectUnion1$inboundSchema: z.ZodType; export declare function subjectUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event2$inboundSchema: z.ZodType; export declare function event2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit2$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory2$inboundSchema: z.ZodType; export declare function memory2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion2$inboundSchema: z.ZodType; export declare function memoryUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProcessCpuUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const ProcessCpu$inboundSchema: z.ZodType; export declare function processCpuFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProcessCpuUnion$inboundSchema: z.ZodType; export declare function processCpuUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProcessKind$inboundSchema: z.ZodEnum; /** @internal */ export declare const ProcessMemoryUnit$inboundSchema: z.ZodEnum; /** @internal */ export declare const ProcessMemory$inboundSchema: z.ZodType; export declare function processMemoryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProcessMemoryUnion$inboundSchema: z.ZodType; export declare function processMemoryUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Process$inboundSchema: z.ZodType; export declare function processFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ProcessUnion$inboundSchema: z.ZodType; export declare function processUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason9$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity9$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue9$inboundSchema: z.ZodType; export declare function collectionIssue9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health9$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle9$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus9$inboundSchema: z.ZodType; export declare function dataStatus9FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal2$inboundSchema: z.ZodType; export declare function dataLocal2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnit1$inboundSchema: z.ZodEnum; /** @internal */ export declare const Cpu1$inboundSchema: z.ZodType; export declare function cpu1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuUnion1$inboundSchema: z.ZodType; export declare function cpuUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObject1$inboundSchema: z.ZodType; export declare function involvedObject1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvolvedObjectUnion1$inboundSchema: z.ZodType; export declare function involvedObjectUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceEvent1$inboundSchema: z.ZodType; export declare function sourceEvent1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SourceUnion1$inboundSchema: z.ZodType; export declare function sourceUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Event1$inboundSchema: z.ZodType; export declare function event1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnit1$inboundSchema: z.ZodEnum; /** @internal */ export declare const Memory1$inboundSchema: z.ZodType; export declare function memory1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryUnion1$inboundSchema: z.ZodType; export declare function memoryUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CpuPodUnit1$inboundSchema: z.ZodEnum; /** @internal */ export declare const CpuPod1$inboundSchema: z.ZodType; export declare function cpuPod1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PodCpuUnion1$inboundSchema: z.ZodType; export declare function podCpuUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MemoryPodUnit1$inboundSchema: z.ZodEnum; /** @internal */ export declare const MemoryPod1$inboundSchema: z.ZodType; export declare function memoryPod1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PodMemoryUnion1$inboundSchema: z.ZodType; export declare function podMemoryUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const OwnerReference1$inboundSchema: z.ZodType; export declare function ownerReference1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Pod1$inboundSchema: z.ZodType; export declare function pod1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Replicas1$inboundSchema: z.ZodType; export declare function replicas1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason8$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity8$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue8$inboundSchema: z.ZodType; export declare function collectionIssue8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health8$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle8$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus8$inboundSchema: z.ZodType; export declare function dataStatus8FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadCondition1$inboundSchema: z.ZodType; export declare function workloadCondition1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Workload1$inboundSchema: z.ZodType; export declare function workload1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadUnion1$inboundSchema: z.ZodType; export declare function workloadUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WorkloadKind1$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataKubernetes1$inboundSchema: z.ZodType; export declare function dataKubernetes1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason7$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity7$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue7$inboundSchema: z.ZodType; export declare function collectionIssue7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health7$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle7$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus7$inboundSchema: z.ZodType; export declare function dataStatus7FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureContainerApps1$inboundSchema: z.ZodType; export declare function dataAzureContainerApps1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason6$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity6$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue6$inboundSchema: z.ZodType; export declare function collectionIssue6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health6$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle6$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus6$inboundSchema: z.ZodType; export declare function dataStatus6FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpCloudRun$inboundSchema: z.ZodType; export declare function dataGcpCloudRunFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason5$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity5$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue5$inboundSchema: z.ZodType; export declare function collectionIssue5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health5$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle5$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus5$inboundSchema: z.ZodType; export declare function dataStatus5FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsLambda$inboundSchema: z.ZodType; export declare function dataAwsLambdaFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion2$inboundSchema: z.ZodType; export declare function dataUnion2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataWorker$inboundSchema: z.ZodType; export declare function dataWorkerFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason4$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity4$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue4$inboundSchema: z.ZodType; export declare function collectionIssue4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health4$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle4$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus4$inboundSchema: z.ZodType; export declare function dataStatus4FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataLocal1$inboundSchema: z.ZodType; export declare function dataLocal1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason3$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity3$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue3$inboundSchema: z.ZodType; export declare function collectionIssue3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health3$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle3$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus3$inboundSchema: z.ZodType; export declare function dataStatus3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAzureBlob$inboundSchema: z.ZodType; export declare function dataAzureBlobFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason2$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity2$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue2$inboundSchema: z.ZodType; export declare function collectionIssue2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health2$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle2$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus2$inboundSchema: z.ZodType; export declare function dataStatus2FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataGcpCloudStorage$inboundSchema: z.ZodType; export declare function dataGcpCloudStorageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailReason1$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssueSeverity1$inboundSchema: z.ZodEnum; /** @internal */ export declare const CollectionIssue1$inboundSchema: z.ZodType; export declare function collectionIssue1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Health1$inboundSchema: z.ZodEnum; /** @internal */ export declare const Lifecycle1$inboundSchema: z.ZodEnum; /** @internal */ export declare const DataStatus1$inboundSchema: z.ZodType; export declare function dataStatus1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataAwsS3$inboundSchema: z.ZodType; export declare function dataAwsS3FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion1$inboundSchema: z.ZodType; export declare function dataUnion1FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataStorage$inboundSchema: z.ZodType; export declare function dataStorageFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DataUnion19$inboundSchema: z.ZodType; export declare function dataUnion19FromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Format$inboundSchema: z.ZodEnum; /** @internal */ export declare const Raw$inboundSchema: z.ZodType; export declare function rawFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Heartbeat$inboundSchema: z.ZodType; export declare function heartbeatFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HeartbeatAvailable$inboundSchema: z.ZodType; export declare function heartbeatAvailableFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HeartbeatUnion$inboundSchema: z.ZodType; export declare function heartbeatUnionFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetResourceDeploymentDetailResponse$inboundSchema: z.ZodType; export declare function getResourceDeploymentDetailResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getresourcedeploymentdetail.d.ts.map