Class: Google::Apis::DataprocV1::ClusterOperationMetadata

Inherits:
Object
  • Object
show all
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

Metadata describing the operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterOperationMetadata

Returns a new instance of ClusterOperationMetadata.



859
860
861
# File 'lib/google/apis/dataproc_v1/classes.rb', line 859

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)


822
823
824
# File 'lib/google/apis/dataproc_v1/classes.rb', line 822

def cluster_name
  @cluster_name
end

#cluster_uuidString

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

Returns:

  • (String)


827
828
829
# File 'lib/google/apis/dataproc_v1/classes.rb', line 827

def cluster_uuid
  @cluster_uuid
end

#descriptionString

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

Returns:

  • (String)


832
833
834
# File 'lib/google/apis/dataproc_v1/classes.rb', line 832

def description
  @description
end

#labelsHash<String,String>

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

Returns:

  • (Hash<String,String>)


837
838
839
# File 'lib/google/apis/dataproc_v1/classes.rb', line 837

def labels
  @labels
end

#operation_typeString

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

Returns:

  • (String)


842
843
844
# File 'lib/google/apis/dataproc_v1/classes.rb', line 842

def operation_type
  @operation_type
end

#statusGoogle::Apis::DataprocV1::ClusterOperationStatus

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



847
848
849
# File 'lib/google/apis/dataproc_v1/classes.rb', line 847

def status
  @status
end

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

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



852
853
854
# File 'lib/google/apis/dataproc_v1/classes.rb', line 852

def status_history
  @status_history
end

#warningsArray<String>

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

Returns:

  • (Array<String>)


857
858
859
# File 'lib/google/apis/dataproc_v1/classes.rb', line 857

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



864
865
866
867
868
869
870
871
872
873
# File 'lib/google/apis/dataproc_v1/classes.rb', line 864

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