Class: Google::Cloud::Dataproc::V1beta2::WorkflowNode
- Inherits:
-
Object
- Object
- Google::Cloud::Dataproc::V1beta2::WorkflowNode
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dataproc/v1beta2/workflow_templates.rb
Overview
The workflow node.
Defined Under Namespace
Modules: NodeState
Instance Attribute Summary collapse
-
#error ⇒ ::String
readonly
Output only.
-
#job_id ⇒ ::String
readonly
Output only.
-
#prerequisite_step_ids ⇒ ::Array<::String>
readonly
Output only.
-
#state ⇒ ::Google::Cloud::Dataproc::V1beta2::WorkflowNode::NodeState
readonly
Output only.
-
#step_id ⇒ ::String
readonly
Output only.
Instance Attribute Details
#error ⇒ ::String (readonly)
Returns Output only. The error detail.
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
# File 'proto_docs/google/cloud/dataproc/v1beta2/workflow_templates.rb', line 503 class WorkflowNode include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The workflow node state. module NodeState # State is unspecified. NODE_STATUS_UNSPECIFIED = 0 # The node is awaiting prerequisite node to finish. BLOCKED = 1 # The node is runnable but not running. RUNNABLE = 2 # The node is running. RUNNING = 3 # The node completed successfully. COMPLETED = 4 # The node failed. A node can be marked FAILED because # its ancestor or peer failed. FAILED = 5 end end |
#job_id ⇒ ::String (readonly)
Returns Output only. The job id; populated after the node enters RUNNING state.
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
# File 'proto_docs/google/cloud/dataproc/v1beta2/workflow_templates.rb', line 503 class WorkflowNode include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The workflow node state. module NodeState # State is unspecified. NODE_STATUS_UNSPECIFIED = 0 # The node is awaiting prerequisite node to finish. BLOCKED = 1 # The node is runnable but not running. RUNNABLE = 2 # The node is running. RUNNING = 3 # The node completed successfully. COMPLETED = 4 # The node failed. A node can be marked FAILED because # its ancestor or peer failed. FAILED = 5 end end |
#prerequisite_step_ids ⇒ ::Array<::String> (readonly)
Returns Output only. Node's prerequisite nodes.
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
# File 'proto_docs/google/cloud/dataproc/v1beta2/workflow_templates.rb', line 503 class WorkflowNode include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The workflow node state. module NodeState # State is unspecified. NODE_STATUS_UNSPECIFIED = 0 # The node is awaiting prerequisite node to finish. BLOCKED = 1 # The node is runnable but not running. RUNNABLE = 2 # The node is running. RUNNING = 3 # The node completed successfully. COMPLETED = 4 # The node failed. A node can be marked FAILED because # its ancestor or peer failed. FAILED = 5 end end |
#state ⇒ ::Google::Cloud::Dataproc::V1beta2::WorkflowNode::NodeState (readonly)
Returns Output only. The node state.
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
# File 'proto_docs/google/cloud/dataproc/v1beta2/workflow_templates.rb', line 503 class WorkflowNode include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The workflow node state. module NodeState # State is unspecified. NODE_STATUS_UNSPECIFIED = 0 # The node is awaiting prerequisite node to finish. BLOCKED = 1 # The node is runnable but not running. RUNNABLE = 2 # The node is running. RUNNING = 3 # The node completed successfully. COMPLETED = 4 # The node failed. A node can be marked FAILED because # its ancestor or peer failed. FAILED = 5 end end |
#step_id ⇒ ::String (readonly)
Returns Output only. The name of the node.
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
# File 'proto_docs/google/cloud/dataproc/v1beta2/workflow_templates.rb', line 503 class WorkflowNode include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The workflow node state. module NodeState # State is unspecified. NODE_STATUS_UNSPECIFIED = 0 # The node is awaiting prerequisite node to finish. BLOCKED = 1 # The node is runnable but not running. RUNNABLE = 2 # The node is running. RUNNING = 3 # The node completed successfully. COMPLETED = 4 # The node failed. A node can be marked FAILED because # its ancestor or peer failed. FAILED = 5 end end |