pub struct GpuInfo {
pub id: String,
pub count: i32,
pub display_name: String,
pub secure_price: f64,
pub community_price: f64,
pub one_month_price: f64,
pub three_month_price: f64,
pub six_month_price: f64,
pub one_week_price: f64,
pub community_spot_price: f64,
pub secure_spot_price: f64,
}Expand description
Detailed information about GPU resources attached to a Pod.
Contains comprehensive details about the GPU configuration including hardware specifications, pricing across different billing periods, and availability in different cloud types.
Fields§
§id: StringUnique identifier for this GPU type.
count: i32Number of GPUs of this type attached to the Pod.
display_name: StringHuman-readable display name for the GPU type.
secure_price: f64Hourly price per GPU in RunPod credits for Secure Cloud.
community_price: f64Hourly price per GPU in RunPod credits for Community Cloud.
one_month_price: f64Monthly rate per GPU in RunPod credits (30-day billing).
three_month_price: f64Quarterly rate per GPU in RunPod credits (90-day billing).
six_month_price: f64Semi-annual rate per GPU in RunPod credits (180-day billing).
one_week_price: f64Weekly rate per GPU in RunPod credits (7-day billing).
community_spot_price: f64Spot pricing per GPU hour in RunPod credits for Community Cloud.
secure_spot_price: f64Spot pricing per GPU hour in RunPod credits for Secure Cloud.