pub struct RuntimeInfo {
pub approximate_usage: Option<UsageMetrics>,
pub current_usage: Option<UsageSnapshot>,
pub diagnostic_output_uri: Option<String>,
pub endpoints: Option<HashMap<String, String>>,
pub output_uri: Option<String>,
pub properties_info: Option<PropertiesInfo>,
}Expand description
Runtime information about workload execution.
This type is not used in any activity, and only used as part of another schema.
Fields§
§approximate_usage: Option<UsageMetrics>Output only. Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).
current_usage: Option<UsageSnapshot>Output only. Snapshot of current workload resource usage.
diagnostic_output_uri: Option<String>Output only. A URI pointing to the location of the diagnostics tarball.
endpoints: Option<HashMap<String, String>>Output only. Map of remote access endpoints (such as web interfaces and APIs) to their URIs.
output_uri: Option<String>Output only. A URI pointing to the location of the stdout and stderr of the workload.
properties_info: Option<PropertiesInfo>Optional. Properties of the workload organized by origin.
Trait Implementations§
Source§impl Clone for RuntimeInfo
impl Clone for RuntimeInfo
Source§fn clone(&self) -> RuntimeInfo
fn clone(&self) -> RuntimeInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more