Interface WorkerAssignedEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkerAssignedEvent
,WorkerAssignedEvent.Builder
public interface WorkerAssignedEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getInstance()
The worker's instance name.com.google.protobuf.ByteString
getInstanceBytes()
The worker's instance name.String
getMachineType()
The machine type that was assigned for the worker.com.google.protobuf.ByteString
getMachineTypeBytes()
The machine type that was assigned for the worker.String
getZone()
The zone the worker is running in.com.google.protobuf.ByteString
getZoneBytes()
The zone the worker is running in.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getZone
String getZone()
The zone the worker is running in.
string zone = 1;
- Returns:
- The zone.
-
getZoneBytes
com.google.protobuf.ByteString getZoneBytes()
The zone the worker is running in.
string zone = 1;
- Returns:
- The bytes for zone.
-
getInstance
String getInstance()
The worker's instance name.
string instance = 2;
- Returns:
- The instance.
-
getInstanceBytes
com.google.protobuf.ByteString getInstanceBytes()
The worker's instance name.
string instance = 2;
- Returns:
- The bytes for instance.
-
getMachineType
String getMachineType()
The machine type that was assigned for the worker.
string machine_type = 3;
- Returns:
- The machineType.
-
getMachineTypeBytes
com.google.protobuf.ByteString getMachineTypeBytes()
The machine type that was assigned for the worker.
string machine_type = 3;
- Returns:
- The bytes for machineType.
-
-