Package com.google.cloud.compute.v1
Interface ScreenshotOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Screenshot
,Screenshot.Builder
public interface ScreenshotOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContents()
[Output Only] The Base64-encoded screenshot data.com.google.protobuf.ByteString
getContentsBytes()
[Output Only] The Base64-encoded screenshot data.String
getKind()
[Output Only] Type of the resource.com.google.protobuf.ByteString
getKindBytes()
[Output Only] Type of the resource.boolean
hasContents()
[Output Only] The Base64-encoded screenshot data.boolean
hasKind()
[Output Only] Type of the resource.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasContents
boolean hasContents()
[Output Only] The Base64-encoded screenshot data.
optional string contents = 506419994;
- Returns:
- Whether the contents field is set.
-
getContents
String getContents()
[Output Only] The Base64-encoded screenshot data.
optional string contents = 506419994;
- Returns:
- The contents.
-
getContentsBytes
com.google.protobuf.ByteString getContentsBytes()
[Output Only] The Base64-encoded screenshot data.
optional string contents = 506419994;
- Returns:
- The bytes for contents.
-
hasKind
boolean hasKind()
[Output Only] Type of the resource. Always compute#screenshot for the screenshots.
optional string kind = 3292052;
- Returns:
- Whether the kind field is set.
-
getKind
String getKind()
[Output Only] Type of the resource. Always compute#screenshot for the screenshots.
optional string kind = 3292052;
- Returns:
- The kind.
-
getKindBytes
com.google.protobuf.ByteString getKindBytes()
[Output Only] Type of the resource. Always compute#screenshot for the screenshots.
optional string kind = 3292052;
- Returns:
- The bytes for kind.
-
-