Remove-2FARadiusAttribute

NAME

Remove-2FARadiusAttribute

SYNOPSIS

Removes attribute settings from Radius provider settings.

SYNTAX

Remove-2FARadiusAttribute [-AttributeType] <RadiusAttrType> {Number | String | IP | Time} -AttributeID <uint> -Name <string> -Value <string> -Vendor <string> -VendorID <uint> [<CommonParameters>]

DESCRIPTION

The cmdlet removes attribute settings. The removal is done by specifying the parameters that will match the attribute.

PARAMETERS


-VendorID <uint>
Radius Attribute Vendor ID

        Required?                    true
        Position?                    named
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

-AttributeID <uint>
Radius Attribute ID

        Required?                    true
        Position?                    named
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Value <string>
Radius Attribute Value

The value has many forms:IP, Number, String, and Time. When setting the time it is expected that the time value is in epoch time.

        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Name <string>
Radius Attribute Name

        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Vendor <string>
Radius Attribute Vendor name

        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-AttributeType <RadiusAttrType>
Radius Attribute Type. IP, String, Number, Time

Possible values: Number, String, IP, Time

        Required?                    true
        Position?                    0
        Default value                String
        Accept pipeline input?       false
        Accept wildcard characters?  false

<CommonParameters>
        This cmdlet supports the common parameters: Verbose, Debug,
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
        OutBuffer, PipelineVariable, and OutVariable. For more information, see 
        about_CommonParameters documentation. 

INPUTS

-none-

OUTPUTS

-none-

EXAMPLES


---------- EXAMPLE 1 ----------

Remove-2FARadiusAttribute -VendorID 1 -AttributeID 1 -AttributeType Time -Value 1500892425 -Name attrName -Vendor vendorName

Removes an attribute from the Radius attribute list of type IP.

RELATED LINKS