Package com.google.cloud.vmmigration.v1
Interface AppliedLicenseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AppliedLicense
,AppliedLicense.Builder
public interface AppliedLicenseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getOsLicense()
The OS license returned from the adaptation module's report.com.google.protobuf.ByteString
getOsLicenseBytes()
The OS license returned from the adaptation module's report.AppliedLicense.Type
getType()
The license type that was used in OS adaptation.int
getTypeValue()
The license type that was used in OS adaptation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
The license type that was used in OS adaptation.
.google.cloud.vmmigration.v1.AppliedLicense.Type type = 1;
- Returns:
- The enum numeric value on the wire for type.
-
getType
AppliedLicense.Type getType()
The license type that was used in OS adaptation.
.google.cloud.vmmigration.v1.AppliedLicense.Type type = 1;
- Returns:
- The type.
-
getOsLicense
String getOsLicense()
The OS license returned from the adaptation module's report.
string os_license = 2;
- Returns:
- The osLicense.
-
getOsLicenseBytes
com.google.protobuf.ByteString getOsLicenseBytes()
The OS license returned from the adaptation module's report.
string os_license = 2;
- Returns:
- The bytes for osLicense.
-
-