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

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

Overview

Metadata describing the operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ClusterOperationMetadata

Returns a new instance of ClusterOperationMetadata.



1376
1377
1378
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1376

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

Instance Attribute Details

#cluster_nameString

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

Returns:

  • (String)


1349
1350
1351
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1349

def cluster_name
  @cluster_name
end

#cluster_uuidString

Cluster UUId for the operation. Corresponds to the JSON property clusterUuid

Returns:

  • (String)


1354
1355
1356
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1354

def cluster_uuid
  @cluster_uuid
end

#descriptionString

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

Returns:

  • (String)


1374
1375
1376
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1374

def description
  @description
end

#operation_typeString

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

Returns:

  • (String)


1369
1370
1371
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1369

def operation_type
  @operation_type
end

#statusGoogle::Apis::DataprocV1::ClusterOperationStatus

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



1359
1360
1361
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1359

def status
  @status
end

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

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



1364
1365
1366
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1364

def status_history
  @status_history
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1381
1382
1383
1384
1385
1386
1387
1388
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1381

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