Enum AuditResourceGroupOperationType



  • public enum AuditResourceGroupOperationType
    extends java.lang.Enum<AuditResourceGroupOperationType>
    Type of resource group operation logged for auditing purposes.
    • Enum Constant Detail

      • cloneMemberOfResourceGroup

        public static final AuditResourceGroupOperationType cloneMemberOfResourceGroup
        A new member has been added to the group due to cloning of other member of the group.
      • deleteMemberFromResourceGroup

        public static final AuditResourceGroupOperationType deleteMemberFromResourceGroup
        A member has been removed from the group.
      • deleteAllMembersOfResourceGroup

        public static final AuditResourceGroupOperationType deleteAllMembersOfResourceGroup
        All members have been removed from the group.
      • deleteObjectThatWasAMemberOfResourceGroup

        public static final AuditResourceGroupOperationType deleteObjectThatWasAMemberOfResourceGroup
        A member has been removed from the group due to its deletion from the system.
      • saveResourceGroupConfiguration

        public static final AuditResourceGroupOperationType saveResourceGroupConfiguration
        Change of resource group configuration.
      • xmlImportCreateResourceGroup

        public static final AuditResourceGroupOperationType xmlImportCreateResourceGroup
        New resource group object has been created due to XML import.
      • xmlImportSaveResourceGroup

        public static final AuditResourceGroupOperationType xmlImportSaveResourceGroup
        Change of resource group configuration due to XML import.
    • Method Detail

      • values

        public static AuditResourceGroupOperationType[] values​()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AuditResourceGroupOperationType c : AuditResourceGroupOperationType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AuditResourceGroupOperationType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromLegacyName

        public static AuditResourceGroupOperationType fromLegacyName​(java.lang.String legacyName,
                                                                     boolean ignoreCase)
        Translate legacy name of operation type into enumeration item or null if not recognized.
        Parameters:
        legacyName - Legacy name of the operation type
        ignoreCase - if true then String.equalsIgnoreCase(String) is used for comparison of legacyName. Otherwise String.equals(Object) is used.
        Returns:
        operation type or null if not recognized
      • getLegacyName

        public java.lang.String getLegacyName​()
        Get legacy name of oepration type.
        Returns:
        legacy name