
    tni                         d Z dZd ZdS )z'
Runpod | API Wrapper | Queries | GPUs
a  
query myPods {
    myself {
        pods {
            id
            containerDiskInGb
            costPerHr
            desiredStatus
            dockerArgs
            dockerId
            env
            gpuCount
            imageName
            lastStatusChange
            machineId
            memoryInGb
            name
            podType
            port
            ports
            uptimeSeconds
            vcpuCount
            volumeInGb
            volumeMountPath
            runtime {
                ports{
                    ip
                    isIpPublic
                    privatePort
                    publicPort
                    type
                }
            }
            machine {
                gpuDisplayName
            }
        }
    }
}
c                     d|  dS )z2
    Generate a query for a specific GPU type
    z-
    query pod {
        pod(input: {podId: "a  "}) {
            id
            containerDiskInGb
            costPerHr
            desiredStatus
            dockerArgs
            dockerId
            env
            gpuCount
            imageName
            lastStatusChange
            machineId
            memoryInGb
            name
            podType
            port
            ports
            uptimeSeconds
            vcpuCount
            volumeInGb
            volumeMountPath
            runtime {
                ports {
                    ip
                    isIpPublic
                    privatePort
                    publicPort
                    type
                }
            }
            machine {
                gpuDisplayName
            }
        }
    }
     )pod_ids    T/var/www/html/gpu-tools/venv/lib/python3.11/site-packages/runpod/api/queries/pods.pygenerate_pod_queryr   /   s    
%$% % % %    N)__doc__	QUERY_PODr   r   r   r   <module>r
      s0    '	T* * * * *r   