Show / Hide Table of Contents

Class L7PolicyV2Args

Inheritance
System.Object
InputArgs
ResourceArgs
L7PolicyV2Args
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.OpenStack.LoadBalancer
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class L7PolicyV2Args : ResourceArgs

Constructors

View Source

L7PolicyV2Args()

Declaration
public L7PolicyV2Args()

Properties

View Source

Action

The L7 Policy action - can either be REDIRECT_TO_POOL, REDIRECT_TO_URL or REJECT.

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

AdminStateUp

The administrative state of the L7 Policy. A valid value is true (UP) or false (DOWN).

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

Description

Human-readable description for the L7 Policy.

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

ListenerId

The Listener on which the L7 Policy will be associated with. Changing this creates a new L7 Policy.

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

Name

Human-readable name for the L7 Policy. Does not have to be unique.

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

Position

The position of this policy on the listener. Positions start at 1.

Declaration
public Input<int> Position { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

RedirectPoolId

Requests matching this policy will be redirected to the pool with this ID. Only valid if action is REDIRECT_TO_POOL.

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

RedirectUrl

Requests matching this policy will be redirected to this URL. Only valid if action is REDIRECT_TO_URL.

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

Region

The region in which to obtain the V2 Networking client. A Networking client is needed to create an . If omitted, the region argument of the provider is used. Changing this creates a new L7 Policy.

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

TenantId

Required for admins. The UUID of the tenant who owns the L7 Policy. Only administrative users can specify a tenant UUID other than their own. Changing this creates a new L7 Policy.

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