Interface ImportDataFileOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportDataFile
,ImportDataFile.Builder
public interface ImportDataFileOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getCreateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
Output only.String
getDisplayName()
User-friendly display name.com.google.protobuf.ByteString
getDisplayNameBytes()
User-friendly display name.ImportDataFile.FileInfoCase
getFileInfoCase()
ImportJobFormat
getFormat()
Required.int
getFormatValue()
Required.String
getName()
Output only.com.google.protobuf.ByteString
getNameBytes()
Output only.ImportDataFile.State
getState()
Output only.int
getStateValue()
Output only.UploadFileInfo
getUploadFileInfo()
Information about a file that is uploaded to a storage service.UploadFileInfoOrBuilder
getUploadFileInfoOrBuilder()
Information about a file that is uploaded to a storage service.boolean
hasCreateTime()
Output only.boolean
hasUploadFileInfo()
Information about a file that is uploaded to a storage service.-
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()
Output only. The name of the file.
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Output only. The name of the file.
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for name.
-
getDisplayName
String getDisplayName()
User-friendly display name. Maximum length is 63 characters.
string display_name = 6;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
User-friendly display name. Maximum length is 63 characters.
string display_name = 6;
- Returns:
- The bytes for displayName.
-
getFormatValue
int getFormatValue()
Required. The payload format.
.google.cloud.migrationcenter.v1.ImportJobFormat format = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The enum numeric value on the wire for format.
-
getFormat
ImportJobFormat getFormat()
Required. The payload format.
.google.cloud.migrationcenter.v1.ImportJobFormat format = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The format.
-
hasCreateTime
boolean hasCreateTime()
Output only. The timestamp when the file was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Output only. The timestamp when the file was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Output only. The timestamp when the file was created.
.google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getStateValue
int getStateValue()
Output only. The state of the import data file.
.google.cloud.migrationcenter.v1.ImportDataFile.State state = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The enum numeric value on the wire for state.
-
getState
ImportDataFile.State getState()
Output only. The state of the import data file.
.google.cloud.migrationcenter.v1.ImportDataFile.State state = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The state.
-
hasUploadFileInfo
boolean hasUploadFileInfo()
Information about a file that is uploaded to a storage service.
.google.cloud.migrationcenter.v1.UploadFileInfo upload_file_info = 5;
- Returns:
- Whether the uploadFileInfo field is set.
-
getUploadFileInfo
UploadFileInfo getUploadFileInfo()
Information about a file that is uploaded to a storage service.
.google.cloud.migrationcenter.v1.UploadFileInfo upload_file_info = 5;
- Returns:
- The uploadFileInfo.
-
getUploadFileInfoOrBuilder
UploadFileInfoOrBuilder getUploadFileInfoOrBuilder()
Information about a file that is uploaded to a storage service.
.google.cloud.migrationcenter.v1.UploadFileInfo upload_file_info = 5;
-
getFileInfoCase
ImportDataFile.FileInfoCase getFileInfoCase()
-
-