Class: Google::Apis::DataprocV1beta2::ClusterOperationMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/representations.rb

Overview

Metadata describing the operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterOperationMetadata

Returns a new instance of ClusterOperationMetadata.



610
611
612
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 610

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cluster_nameString

Output only. Name of the cluster for the operation. Corresponds to the JSON property clusterName

Returns:

  • (String)


573
574
575
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 573

def cluster_name
  @cluster_name
end

#cluster_uuidString

Output only. Cluster UUID for the operation. Corresponds to the JSON property clusterUuid

Returns:

  • (String)


578
579
580
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 578

def cluster_uuid
  @cluster_uuid
end

#descriptionString

Output only. Short description of operation. Corresponds to the JSON property description

Returns:

  • (String)


583
584
585
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 583

def description
  @description
end

#labelsHash<String,String>

Output only. Labels associated with the operation Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


588
589
590
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 588

def labels
  @labels
end

#operation_typeString

Output only. The operation type. Corresponds to the JSON property operationType

Returns:

  • (String)


593
594
595
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 593

def operation_type
  @operation_type
end

#statusGoogle::Apis::DataprocV1beta2::ClusterOperationStatus

The status of the operation. Corresponds to the JSON property status



598
599
600
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 598

def status
  @status
end

#status_historyArray<Google::Apis::DataprocV1beta2::ClusterOperationStatus>

Output only. The previous operation status. Corresponds to the JSON property statusHistory



603
604
605
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 603

def status_history
  @status_history
end

#warningsArray<String>

Output only. Errors encountered during operation execution. Corresponds to the JSON property warnings

Returns:

  • (Array<String>)


608
609
610
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 608

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



615
616
617
618
619
620
621
622
623
624
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 615

def update!(**args)
  @cluster_name = args[:cluster_name] if args.key?(:cluster_name)
  @cluster_uuid = args[:cluster_uuid] if args.key?(:cluster_uuid)
  @description = args[:description] if args.key?(:description)
  @labels = args[:labels] if args.key?(:labels)
  @operation_type = args[:operation_type] if args.key?(:operation_type)
  @status = args[:status] if args.key?(:status)
  @status_history = args[:status_history] if args.key?(:status_history)
  @warnings = args[:warnings] if args.key?(:warnings)
end