Show / Hide Table of Contents

Class QueueArgs

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

Constructors

View Source

QueueArgs()

Declaration
public QueueArgs()

Properties

View Source

AppEngineRoutingOverride

Overrides for task-level appEngineRouting. These settings apply only to App Engine tasks in this queue Structure is documented below.

Declaration
public Input<QueueAppEngineRoutingOverrideArgs> AppEngineRoutingOverride { get; set; }
Property Value
Type Description
Input<QueueAppEngineRoutingOverrideArgs>
View Source

Location

The location of the queue

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

Name

The queue name.

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

RateLimits

Rate limits for task dispatches. The queue's actual dispatch rate is the result of:

  • Number of tasks in the queue
  • User-specified throttling: rateLimits, retryConfig, and the queue's state.
  • System throttling due to 429 (Too Many Requests) or 503 (Service Unavailable) responses from the worker, high error rates, or to smooth sudden large traffic spikes. Structure is documented below.
Declaration
public Input<QueueRateLimitsArgs> RateLimits { get; set; }
Property Value
Type Description
Input<QueueRateLimitsArgs>
View Source

RetryConfig

Settings that determine the retry behavior. Structure is documented below.

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