Interface DeleteBreakpointRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeleteBreakpointRequest
,DeleteBreakpointRequest.Builder
public interface DeleteBreakpointRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBreakpointId()
Required.com.google.protobuf.ByteString
getBreakpointIdBytes()
Required.String
getClientVersion()
Required.com.google.protobuf.ByteString
getClientVersionBytes()
Required.String
getDebuggeeId()
Required.com.google.protobuf.ByteString
getDebuggeeIdBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDebuggeeId
String getDebuggeeId()
Required. ID of the debuggee whose breakpoint to delete.
string debuggee_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The debuggeeId.
-
getDebuggeeIdBytes
com.google.protobuf.ByteString getDebuggeeIdBytes()
Required. ID of the debuggee whose breakpoint to delete.
string debuggee_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for debuggeeId.
-
getBreakpointId
String getBreakpointId()
Required. ID of the breakpoint to delete.
string breakpoint_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The breakpointId.
-
getBreakpointIdBytes
com.google.protobuf.ByteString getBreakpointIdBytes()
Required. ID of the breakpoint to delete.
string breakpoint_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for breakpointId.
-
getClientVersion
String getClientVersion()
Required. The client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).
string client_version = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The clientVersion.
-
getClientVersionBytes
com.google.protobuf.ByteString getClientVersionBytes()
Required. The client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).
string client_version = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for clientVersion.
-
-