Show / Hide Table of Contents

Class ApplicationGatewayRedirectConfigurationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ApplicationGatewayRedirectConfigurationArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Network.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ApplicationGatewayRedirectConfigurationArgs : ResourceArgs

Constructors

View Source

ApplicationGatewayRedirectConfigurationArgs()

Declaration
public ApplicationGatewayRedirectConfigurationArgs()

Properties

View Source

Id

The ID of the Rewrite Rule Set

Declaration
public Input<string> Id { get; set; }
Property Value
Type Description
Input<System.String>
View Source

IncludePath

Whether or not to include the path in the redirected Url. Defaults to false

Declaration
public Input<bool> IncludePath { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

IncludeQueryString

Whether or not to include the query string in the redirected Url. Default to false

Declaration
public Input<bool> IncludeQueryString { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

Unique name of the redirect configuration block

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RedirectType

The type of redirect. Possible values are Permanent, Temporary, Found and SeeOther

Declaration
public Input<string> RedirectType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TargetListenerId

Declaration
public Input<string> TargetListenerId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TargetListenerName

The name of the listener to redirect to. Cannot be set if target_url is set.

Declaration
public Input<string> TargetListenerName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TargetUrl

The Url to redirect the request to. Cannot be set if target_listener_name is set.

Declaration
public Input<string> TargetUrl { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.