Class GuestPolicies.Package

  • All Implemented Interfaces:
    GuestPolicies.PackageOrBuilder, com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable
    Enclosing class:
    GuestPolicies

    public static final class GuestPolicies.Package
    extends com.google.protobuf.GeneratedMessageV3
    implements GuestPolicies.PackageOrBuilder
     Package is a reference to the software package to be installed or removed.
     The agent on the VM instance uses the system package manager to apply the
     config.
    
    
     These are the commands that the agent uses to install or remove
     packages.
    
     Apt
     install: `apt-get update && apt-get -y install package1 package2 package3`
     remove: `apt-get -y remove package1 package2 package3`
    
     Yum
     install: `yum -y install package1 package2 package3`
     remove: `yum -y remove package1 package2 package3`
    
     Zypper
     install: `zypper install package1 package2 package3`
     remove: `zypper rm package1 package2`
    
     Googet
     install: `googet -noconfirm install package1 package2 package3`
     remove: `googet -noconfirm remove package1 package2 package3`
     
    Protobuf type google.cloud.osconfig.v1beta.Package
    See Also:
    Serialized Form
    • Method Detail

      • newInstance

        protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • getName

        public String getName()
         Required. The name of the package. A package is uniquely identified for conflict
         validation by checking the package name and the manager(s) that the
         package targets.
         
        string name = 1 [(.google.api.field_behavior) = REQUIRED];
        Specified by:
        getName in interface GuestPolicies.PackageOrBuilder
        Returns:
        The name.
      • getNameBytes

        public com.google.protobuf.ByteString getNameBytes()
         Required. The name of the package. A package is uniquely identified for conflict
         validation by checking the package name and the manager(s) that the
         package targets.
         
        string name = 1 [(.google.api.field_behavior) = REQUIRED];
        Specified by:
        getNameBytes in interface GuestPolicies.PackageOrBuilder
        Returns:
        The bytes for name.
      • getDesiredStateValue

        public int getDesiredStateValue()
         The desired_state the agent should maintain for this package. The
         default is to ensure the package is installed.
         
        .google.cloud.osconfig.v1beta.DesiredState desired_state = 2;
        Specified by:
        getDesiredStateValue in interface GuestPolicies.PackageOrBuilder
        Returns:
        The enum numeric value on the wire for desiredState.
      • getManagerValue

        public int getManagerValue()
         Type of package manager that can be used to install this package.
         If a system does not have the package manager, the package is not
         installed or removed no error message is returned. By default,
         or if you specify `ANY`,
         the agent attempts to install and remove this package using the default
         package manager. This is useful when creating a policy that applies to
         different types of systems.
        
         The default behavior is ANY.
         
        .google.cloud.osconfig.v1beta.Package.Manager manager = 3;
        Specified by:
        getManagerValue in interface GuestPolicies.PackageOrBuilder
        Returns:
        The enum numeric value on the wire for manager.
      • getManager

        public GuestPolicies.Package.Manager getManager()
         Type of package manager that can be used to install this package.
         If a system does not have the package manager, the package is not
         installed or removed no error message is returned. By default,
         or if you specify `ANY`,
         the agent attempts to install and remove this package using the default
         package manager. This is useful when creating a policy that applies to
         different types of systems.
        
         The default behavior is ANY.
         
        .google.cloud.osconfig.v1beta.Package.Manager manager = 3;
        Specified by:
        getManager in interface GuestPolicies.PackageOrBuilder
        Returns:
        The manager.
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessageV3
        Throws:
        IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • equals

        public boolean equals​(Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static GuestPolicies.Package parseFrom​(ByteBuffer data)
                                               throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GuestPolicies.Package parseFrom​(ByteBuffer data,
                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                               throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GuestPolicies.Package parseFrom​(com.google.protobuf.ByteString data)
                                               throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GuestPolicies.Package parseFrom​(com.google.protobuf.ByteString data,
                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                               throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GuestPolicies.Package parseFrom​(byte[] data)
                                               throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static GuestPolicies.Package parseFrom​(byte[] data,
                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                               throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • newBuilderForType

        public GuestPolicies.Package.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public GuestPolicies.Package.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected GuestPolicies.Package.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • getParserForType

        public com.google.protobuf.Parser<GuestPolicies.Package> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstanceForType

        public GuestPolicies.Package getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder