Package com.google.devtools.source.v1
Interface CloudWorkspaceSourceContextOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CloudWorkspaceSourceContext
,CloudWorkspaceSourceContext.Builder
public interface CloudWorkspaceSourceContextOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getSnapshotId()
The ID of the snapshot.com.google.protobuf.ByteString
getSnapshotIdBytes()
The ID of the snapshot.CloudWorkspaceId
getWorkspaceId()
The ID of the workspace.CloudWorkspaceIdOrBuilder
getWorkspaceIdOrBuilder()
The ID of the workspace.boolean
hasWorkspaceId()
The ID of the workspace.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasWorkspaceId
boolean hasWorkspaceId()
The ID of the workspace.
.google.devtools.source.v1.CloudWorkspaceId workspace_id = 1;
- Returns:
- Whether the workspaceId field is set.
-
getWorkspaceId
CloudWorkspaceId getWorkspaceId()
The ID of the workspace.
.google.devtools.source.v1.CloudWorkspaceId workspace_id = 1;
- Returns:
- The workspaceId.
-
getWorkspaceIdOrBuilder
CloudWorkspaceIdOrBuilder getWorkspaceIdOrBuilder()
The ID of the workspace.
.google.devtools.source.v1.CloudWorkspaceId workspace_id = 1;
-
getSnapshotId
String getSnapshotId()
The ID of the snapshot. An empty snapshot_id refers to the most recent snapshot.
string snapshot_id = 2;
- Returns:
- The snapshotId.
-
getSnapshotIdBytes
com.google.protobuf.ByteString getSnapshotIdBytes()
The ID of the snapshot. An empty snapshot_id refers to the most recent snapshot.
string snapshot_id = 2;
- Returns:
- The bytes for snapshotId.
-
-