Show / Hide Table of Contents

Class TargetPoolArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TargetPoolArgs
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.Gcp.Compute
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TargetPoolArgs : ResourceArgs

Constructors

View Source

TargetPoolArgs()

Declaration
public TargetPoolArgs()

Properties

View Source

BackupPool

URL to the backup target pool. Must also set failover_ratio.

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

Description

Textual description field.

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

FailoverRatio

Ratio (0 to 1) of failed nodes before using the backup pool (which must also be set).

Declaration
public Input<double> FailoverRatio { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

HealthChecks

List of zero or one health check name or self_link. Only legacy gcp.compute.HttpHealthCheck is supported.

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

Instances

List of instances in the pool. They can be given as URLs, or in the form of "zone/name". Note that the instances need not exist at the time of target pool creation, so there is no need to use the interpolation to create a dependency on the instances from the target pool.

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

Name

A unique name for the resource, required by GCE. Changing this forces a new resource to be created.

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

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

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

Region

Where the target pool resides. Defaults to project region.

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

SessionAffinity

How to distribute load. Options are "NONE" (no affinity). "CLIENT_IP" (hash of the source/dest addresses / ports), and "CLIENT_IP_PROTO" also includes the protocol (default "NONE").

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