/** * @public * @enum */ export declare const ActionHistoryStatus: { readonly Completed: "Completed"; readonly Failed: "Failed"; readonly Unknown: "Unknown"; }; /** * @public */ export type ActionHistoryStatus = (typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus]; /** * @public * @enum */ export declare const ActionStatus: { readonly Pending: "Pending"; readonly Running: "Running"; readonly Scheduled: "Scheduled"; readonly Unknown: "Unknown"; }; /** * @public */ export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus]; /** * @public * @enum */ export declare const ActionType: { readonly InstanceRefresh: "InstanceRefresh"; readonly PlatformUpdate: "PlatformUpdate"; readonly Unknown: "Unknown"; }; /** * @public */ export type ActionType = (typeof ActionType)[keyof typeof ActionType]; /** * @public * @enum */ export declare const ArchitectureType: { readonly amd64: "amd64"; readonly arm64: "arm64"; }; /** * @public */ export type ArchitectureType = (typeof ArchitectureType)[keyof typeof ArchitectureType]; /** * @public * @enum */ export declare const ComputeType: { readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE"; readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM"; readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL"; }; /** * @public */ export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType]; /** * @public * @enum */ export declare const ImageBuildType: { readonly buildpack: "buildpack"; readonly docker: "docker"; }; /** * @public */ export type ImageBuildType = (typeof ImageBuildType)[keyof typeof ImageBuildType]; /** * @public * @enum */ export declare const SourceRepository: { readonly CodeCommit: "CodeCommit"; readonly S3: "S3"; }; /** * @public */ export type SourceRepository = (typeof SourceRepository)[keyof typeof SourceRepository]; /** * @public * @enum */ export declare const SourceType: { readonly Git: "Git"; readonly Zip: "Zip"; }; /** * @public */ export type SourceType = (typeof SourceType)[keyof typeof SourceType]; /** * @public * @enum */ export declare const ApplicationVersionStatus: { readonly Building: "Building"; readonly Failed: "Failed"; readonly Processed: "Processed"; readonly Processing: "Processing"; readonly Unprocessed: "Unprocessed"; }; /** * @public */ export type ApplicationVersionStatus = (typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus]; /** * @public * @enum */ export declare const EnvironmentHealth: { readonly Green: "Green"; readonly Grey: "Grey"; readonly Red: "Red"; readonly Yellow: "Yellow"; }; /** * @public */ export type EnvironmentHealth = (typeof EnvironmentHealth)[keyof typeof EnvironmentHealth]; /** * @public * @enum */ export declare const EnvironmentHealthStatus: { readonly Degraded: "Degraded"; readonly Info: "Info"; readonly NoData: "NoData"; readonly Ok: "Ok"; readonly Pending: "Pending"; readonly Severe: "Severe"; readonly Suspended: "Suspended"; readonly Unknown: "Unknown"; readonly Warning: "Warning"; }; /** * @public */ export type EnvironmentHealthStatus = (typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus]; /** * @public * @enum */ export declare const EnvironmentStatus: { readonly Aborting: "Aborting"; readonly Launching: "Launching"; readonly LinkingFrom: "LinkingFrom"; readonly LinkingTo: "LinkingTo"; readonly Ready: "Ready"; readonly Terminated: "Terminated"; readonly Terminating: "Terminating"; readonly Updating: "Updating"; }; /** * @public */ export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus]; /** * @public * @enum */ export declare const ConfigurationDeploymentStatus: { readonly deployed: "deployed"; readonly failed: "failed"; readonly pending: "pending"; }; /** * @public */ export type ConfigurationDeploymentStatus = (typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus]; /** * @public * @enum */ export declare const PlatformStatus: { readonly Creating: "Creating"; readonly Deleted: "Deleted"; readonly Deleting: "Deleting"; readonly Failed: "Failed"; readonly Ready: "Ready"; }; /** * @public */ export type PlatformStatus = (typeof PlatformStatus)[keyof typeof PlatformStatus]; /** * @public * @enum */ export declare const ConfigurationOptionValueType: { readonly List: "List"; readonly Scalar: "Scalar"; }; /** * @public */ export type ConfigurationOptionValueType = (typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType]; /** * @public * @enum */ export declare const EnvironmentHealthAttribute: { readonly All: "All"; readonly ApplicationMetrics: "ApplicationMetrics"; readonly Causes: "Causes"; readonly Color: "Color"; readonly HealthStatus: "HealthStatus"; readonly InstancesHealth: "InstancesHealth"; readonly RefreshedAt: "RefreshedAt"; readonly Status: "Status"; }; /** * @public */ export type EnvironmentHealthAttribute = (typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute]; /** * @public * @enum */ export declare const FailureType: { readonly CancellationFailed: "CancellationFailed"; readonly InternalFailure: "InternalFailure"; readonly InvalidEnvironmentState: "InvalidEnvironmentState"; readonly PermissionsError: "PermissionsError"; readonly RollbackFailed: "RollbackFailed"; readonly RollbackSuccessful: "RollbackSuccessful"; readonly UpdateCancelled: "UpdateCancelled"; }; /** * @public */ export type FailureType = (typeof FailureType)[keyof typeof FailureType]; /** * @public * @enum */ export declare const EventSeverity: { readonly DEBUG: "DEBUG"; readonly ERROR: "ERROR"; readonly FATAL: "FATAL"; readonly INFO: "INFO"; readonly TRACE: "TRACE"; readonly WARN: "WARN"; }; /** * @public */ export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity]; /** * @public * @enum */ export declare const InstancesHealthAttribute: { readonly All: "All"; readonly ApplicationMetrics: "ApplicationMetrics"; readonly AvailabilityZone: "AvailabilityZone"; readonly Causes: "Causes"; readonly Color: "Color"; readonly Deployment: "Deployment"; readonly HealthStatus: "HealthStatus"; readonly InstanceType: "InstanceType"; readonly LaunchedAt: "LaunchedAt"; readonly RefreshedAt: "RefreshedAt"; readonly System: "System"; }; /** * @public */ export type InstancesHealthAttribute = (typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute]; /** * @public * @enum */ export declare const EnvironmentInfoType: { readonly analyze: "analyze"; readonly bundle: "bundle"; readonly tail: "tail"; }; /** * @public */ export type EnvironmentInfoType = (typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType]; /** * @public * @enum */ export declare const ValidationSeverity: { readonly error: "error"; readonly warning: "warning"; }; /** * @public */ export type ValidationSeverity = (typeof ValidationSeverity)[keyof typeof ValidationSeverity];