Interface GuestOsDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GuestOsDetails
,GuestOsDetails.Builder
public interface GuestOsDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GuestConfigDetails
getConfig()
OS and app configuration.GuestConfigDetailsOrBuilder
getConfigOrBuilder()
OS and app configuration.OperatingSystemFamily
getFamily()
What family the OS belong to, if known.int
getFamilyValue()
What family the OS belong to, if known.String
getOsName()
The name of the operating system.com.google.protobuf.ByteString
getOsNameBytes()
The name of the operating system.GuestRuntimeDetails
getRuntime()
Runtime information.GuestRuntimeDetailsOrBuilder
getRuntimeOrBuilder()
Runtime information.String
getVersion()
The version of the operating system.com.google.protobuf.ByteString
getVersionBytes()
The version of the operating system.boolean
hasConfig()
OS and app configuration.boolean
hasRuntime()
Runtime information.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOsName
String getOsName()
The name of the operating system.
string os_name = 1;
- Returns:
- The osName.
-
getOsNameBytes
com.google.protobuf.ByteString getOsNameBytes()
The name of the operating system.
string os_name = 1;
- Returns:
- The bytes for osName.
-
getFamilyValue
int getFamilyValue()
What family the OS belong to, if known.
.google.cloud.migrationcenter.v1.OperatingSystemFamily family = 2;
- Returns:
- The enum numeric value on the wire for family.
-
getFamily
OperatingSystemFamily getFamily()
What family the OS belong to, if known.
.google.cloud.migrationcenter.v1.OperatingSystemFamily family = 2;
- Returns:
- The family.
-
getVersion
String getVersion()
The version of the operating system.
string version = 3;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The version of the operating system.
string version = 3;
- Returns:
- The bytes for version.
-
hasConfig
boolean hasConfig()
OS and app configuration.
.google.cloud.migrationcenter.v1.GuestConfigDetails config = 4;
- Returns:
- Whether the config field is set.
-
getConfig
GuestConfigDetails getConfig()
OS and app configuration.
.google.cloud.migrationcenter.v1.GuestConfigDetails config = 4;
- Returns:
- The config.
-
getConfigOrBuilder
GuestConfigDetailsOrBuilder getConfigOrBuilder()
OS and app configuration.
.google.cloud.migrationcenter.v1.GuestConfigDetails config = 4;
-
hasRuntime
boolean hasRuntime()
Runtime information.
.google.cloud.migrationcenter.v1.GuestRuntimeDetails runtime = 5;
- Returns:
- Whether the runtime field is set.
-
getRuntime
GuestRuntimeDetails getRuntime()
Runtime information.
.google.cloud.migrationcenter.v1.GuestRuntimeDetails runtime = 5;
- Returns:
- The runtime.
-
getRuntimeOrBuilder
GuestRuntimeDetailsOrBuilder getRuntimeOrBuilder()
Runtime information.
.google.cloud.migrationcenter.v1.GuestRuntimeDetails runtime = 5;
-
-