Package io.grafeas.v1
Interface UpgradeNoteOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpgradeNote,UpgradeNote.Builder
public interface UpgradeNoteOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpgradeDistributiongetDistributions(int index)Metadata about the upgrade for each specific operating system.intgetDistributionsCount()Metadata about the upgrade for each specific operating system.List<UpgradeDistribution>getDistributionsList()Metadata about the upgrade for each specific operating system.UpgradeDistributionOrBuildergetDistributionsOrBuilder(int index)Metadata about the upgrade for each specific operating system.List<? extends UpgradeDistributionOrBuilder>getDistributionsOrBuilderList()Metadata about the upgrade for each specific operating system.StringgetPackage()Required for non-Windows OS.com.google.protobuf.ByteStringgetPackageBytes()Required for non-Windows OS.VersiongetVersion()Required for non-Windows OS.VersionOrBuildergetVersionOrBuilder()Required for non-Windows OS.WindowsUpdategetWindowsUpdate()Required for Windows OS.WindowsUpdateOrBuildergetWindowsUpdateOrBuilder()Required for Windows OS.booleanhasVersion()Required for non-Windows OS.booleanhasWindowsUpdate()Required for Windows OS.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPackage
String getPackage()
Required for non-Windows OS. The package this Upgrade is for.
string package = 1;- Returns:
- The package.
-
getPackageBytes
com.google.protobuf.ByteString getPackageBytes()
Required for non-Windows OS. The package this Upgrade is for.
string package = 1;- Returns:
- The bytes for package.
-
hasVersion
boolean hasVersion()
Required for non-Windows OS. The version of the package in machine + human readable form.
.grafeas.v1.Version version = 2;- Returns:
- Whether the version field is set.
-
getVersion
Version getVersion()
Required for non-Windows OS. The version of the package in machine + human readable form.
.grafeas.v1.Version version = 2;- Returns:
- The version.
-
getVersionOrBuilder
VersionOrBuilder getVersionOrBuilder()
Required for non-Windows OS. The version of the package in machine + human readable form.
.grafeas.v1.Version version = 2;
-
getDistributionsList
List<UpgradeDistribution> getDistributionsList()
Metadata about the upgrade for each specific operating system.
repeated .grafeas.v1.UpgradeDistribution distributions = 3;
-
getDistributions
UpgradeDistribution getDistributions(int index)
Metadata about the upgrade for each specific operating system.
repeated .grafeas.v1.UpgradeDistribution distributions = 3;
-
getDistributionsCount
int getDistributionsCount()
Metadata about the upgrade for each specific operating system.
repeated .grafeas.v1.UpgradeDistribution distributions = 3;
-
getDistributionsOrBuilderList
List<? extends UpgradeDistributionOrBuilder> getDistributionsOrBuilderList()
Metadata about the upgrade for each specific operating system.
repeated .grafeas.v1.UpgradeDistribution distributions = 3;
-
getDistributionsOrBuilder
UpgradeDistributionOrBuilder getDistributionsOrBuilder(int index)
Metadata about the upgrade for each specific operating system.
repeated .grafeas.v1.UpgradeDistribution distributions = 3;
-
hasWindowsUpdate
boolean hasWindowsUpdate()
Required for Windows OS. Represents the metadata about the Windows update.
.grafeas.v1.WindowsUpdate windows_update = 4;- Returns:
- Whether the windowsUpdate field is set.
-
getWindowsUpdate
WindowsUpdate getWindowsUpdate()
Required for Windows OS. Represents the metadata about the Windows update.
.grafeas.v1.WindowsUpdate windows_update = 4;- Returns:
- The windowsUpdate.
-
getWindowsUpdateOrBuilder
WindowsUpdateOrBuilder getWindowsUpdateOrBuilder()
Required for Windows OS. Represents the metadata about the Windows update.
.grafeas.v1.WindowsUpdate windows_update = 4;
-
-