Class RepairClusterRequest
A request to repair a cluster.
Implements
Inherited Members
Namespace: Google.Apis.Dataproc.v1.Data
Assembly: Google.Apis.Dataproc.v1.dll
Syntax
public class RepairClusterRequest : IDirectResponseSchema
Properties
Cluster
Optional. Cluster to be repaired
Declaration
[JsonProperty("cluster")]
public virtual ClusterToRepair Cluster { get; set; }
Property Value
Type | Description |
---|---|
ClusterToRepair |
ClusterUuid
Optional. Specifying the cluster_uuid means the RPC will fail (with error NOT_FOUND) if a cluster with the specified UUID does not exist.
Declaration
[JsonProperty("clusterUuid")]
public virtual string ClusterUuid { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
GracefulDecommissionTimeout
Optional. Timeout for graceful YARN decommissioning. Graceful decommissioning facilitates the removal of cluster nodes without interrupting jobs in progress. The timeout specifies the amount of time to wait for jobs finish before forcefully removing nodes. The default timeout is 0 for forceful decommissioning, and the maximum timeout period is 1 day. (see JSON Mapping—Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).graceful_decommission_timeout is supported in Dataproc image versions 1.2+.
Declaration
[JsonProperty("gracefulDecommissionTimeout")]
public virtual object GracefulDecommissionTimeout { get; set; }
Property Value
Type | Description |
---|---|
object |
NodePools
Optional. Node pools and corresponding repair action to be taken. All node pools should be unique in this request. i.e. Multiple entries for the same node pool id are not allowed.
Declaration
[JsonProperty("nodePools")]
public virtual IList<NodePool> NodePools { get; set; }
Property Value
Type | Description |
---|---|
IList<NodePool> |
ParentOperationId
Optional. operation id of the parent operation sending the repair request
Declaration
[JsonProperty("parentOperationId")]
public virtual string ParentOperationId { get; set; }
Property Value
Type | Description |
---|---|
string |
RequestId
Optional. A unique ID used to identify the request. If the server receives two RepairClusterRequests with the same ID, the second request is ignored, and the first google.longrunning.Operation created and stored in the backend is returned.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Declaration
[JsonProperty("requestId")]
public virtual string RequestId { get; set; }
Property Value
Type | Description |
---|---|
string |