Class: Google::Apis::DataprocV1::RuntimeInfo
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::RuntimeInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb
Overview
Runtime information about workload execution.
Instance Attribute Summary collapse
-
#approximate_usage ⇒ Google::Apis::DataprocV1::UsageMetrics
Usage metrics represent total resources consumed by a workload.
-
#diagnostic_output_uri ⇒ String
Output only.
-
#endpoints ⇒ Hash<String,String>
Output only.
-
#output_uri ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuntimeInfo
constructor
A new instance of RuntimeInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RuntimeInfo
Returns a new instance of RuntimeInfo.
3971 3972 3973 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3971 def initialize(**args) update!(**args) end |
Instance Attribute Details
#approximate_usage ⇒ Google::Apis::DataprocV1::UsageMetrics
Usage metrics represent total resources consumed by a workload.
Corresponds to the JSON property approximateUsage
3952 3953 3954 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3952 def approximate_usage @approximate_usage end |
#diagnostic_output_uri ⇒ String
Output only. A URI pointing to the location of the diagnostics tarball.
Corresponds to the JSON property diagnosticOutputUri
3957 3958 3959 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3957 def diagnostic_output_uri @diagnostic_output_uri end |
#endpoints ⇒ Hash<String,String>
Output only. Map of remote access endpoints (such as web interfaces and APIs)
to their URIs.
Corresponds to the JSON property endpoints
3963 3964 3965 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3963 def endpoints @endpoints end |
#output_uri ⇒ String
Output only. A URI pointing to the location of the stdout and stderr of the
workload.
Corresponds to the JSON property outputUri
3969 3970 3971 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3969 def output_uri @output_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3976 3977 3978 3979 3980 3981 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3976 def update!(**args) @approximate_usage = args[:approximate_usage] if args.key?(:approximate_usage) @diagnostic_output_uri = args[:diagnostic_output_uri] if args.key?(:diagnostic_output_uri) @endpoints = args[:endpoints] if args.key?(:endpoints) @output_uri = args[:output_uri] if args.key?(:output_uri) end |