Package com.google.cloud.dataproc.v1
Interface YarnApplicationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
YarnApplication
,YarnApplication.Builder
public interface YarnApplicationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Required.com.google.protobuf.ByteString
getNameBytes()
Required.float
getProgress()
Required.YarnApplication.State
getState()
Required.int
getStateValue()
Required.String
getTrackingUrl()
Optional.com.google.protobuf.ByteString
getTrackingUrlBytes()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Required. The application name.
string name = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Required. The application name.
string name = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for name.
-
getStateValue
int getStateValue()
Required. The application state.
.google.cloud.dataproc.v1.YarnApplication.State state = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The enum numeric value on the wire for state.
-
getState
YarnApplication.State getState()
Required. The application state.
.google.cloud.dataproc.v1.YarnApplication.State state = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The state.
-
getProgress
float getProgress()
Required. The numerical progress of the application, from 1 to 100.
float progress = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The progress.
-
getTrackingUrl
String getTrackingUrl()
Optional. The HTTP URL of the ApplicationMaster, HistoryServer, or TimelineServer that provides application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access.
string tracking_url = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The trackingUrl.
-
getTrackingUrlBytes
com.google.protobuf.ByteString getTrackingUrlBytes()
Optional. The HTTP URL of the ApplicationMaster, HistoryServer, or TimelineServer that provides application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access.
string tracking_url = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for trackingUrl.
-
-