v2beta3

package
v0.10.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 22, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// HTTP method unspecified
	AppEngineHttpRequestHttpMethodHttpMethodUnspecified = AppEngineHttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")
	// HTTP POST
	AppEngineHttpRequestHttpMethodPost = AppEngineHttpRequestHttpMethod("POST")
	// HTTP GET
	AppEngineHttpRequestHttpMethodGet = AppEngineHttpRequestHttpMethod("GET")
	// HTTP HEAD
	AppEngineHttpRequestHttpMethodHead = AppEngineHttpRequestHttpMethod("HEAD")
	// HTTP PUT
	AppEngineHttpRequestHttpMethodPut = AppEngineHttpRequestHttpMethod("PUT")
	// HTTP DELETE
	AppEngineHttpRequestHttpMethodDelete = AppEngineHttpRequestHttpMethod("DELETE")
	// HTTP PATCH
	AppEngineHttpRequestHttpMethodPatch = AppEngineHttpRequestHttpMethod("PATCH")
	// HTTP OPTIONS
	AppEngineHttpRequestHttpMethodOptions = AppEngineHttpRequestHttpMethod("OPTIONS")
)
View Source
const (
	// HTTP method unspecified
	HttpRequestHttpMethodHttpMethodUnspecified = HttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")
	// HTTP POST
	HttpRequestHttpMethodPost = HttpRequestHttpMethod("POST")
	// HTTP GET
	HttpRequestHttpMethodGet = HttpRequestHttpMethod("GET")
	// HTTP HEAD
	HttpRequestHttpMethodHead = HttpRequestHttpMethod("HEAD")
	// HTTP PUT
	HttpRequestHttpMethodPut = HttpRequestHttpMethod("PUT")
	// HTTP DELETE
	HttpRequestHttpMethodDelete = HttpRequestHttpMethod("DELETE")
	// HTTP PATCH
	HttpRequestHttpMethodPatch = HttpRequestHttpMethod("PATCH")
	// HTTP OPTIONS
	HttpRequestHttpMethodOptions = HttpRequestHttpMethod("OPTIONS")
)
View Source
const (
	// Default value.
	QueueTypeTypeUnspecified = QueueType("TYPE_UNSPECIFIED")
	// A pull queue.
	QueueTypePull = QueueType("PULL")
	// A push queue.
	QueueTypePush = QueueType("PUSH")
)
View Source
const (
	// Unspecified. Defaults to BASIC.
	TaskResponseViewViewUnspecified = TaskResponseView("VIEW_UNSPECIFIED")
	// The basic view omits fields which can be large or can contain sensitive data. This view does not include the body in AppEngineHttpRequest. Bodies are desirable to return only when needed, because they can be large and because of the sensitivity of the data that you choose to store in it.
	TaskResponseViewBasic = TaskResponseView("BASIC")
	// All information is returned. Authorization for FULL requires `cloudtasks.tasks.fullView` [Google IAM](https://cloud.google.com/iam/) permission on the Queue resource.
	TaskResponseViewFull = TaskResponseView("FULL")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AppEngineHttpQueue

type AppEngineHttpQueue struct {
	// Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRoutingOverride *AppEngineRouting `pulumi:"appEngineRoutingOverride"`
}

App Engine HTTP queue. The task will be delivered to the App Engine application hostname specified by its AppEngineHttpQueue and AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how the task's host URL is constructed. Using AppEngineHttpQueue requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform`

type AppEngineHttpQueueArgs

type AppEngineHttpQueueArgs struct {
	// Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRoutingOverride AppEngineRoutingPtrInput `pulumi:"appEngineRoutingOverride"`
}

App Engine HTTP queue. The task will be delivered to the App Engine application hostname specified by its AppEngineHttpQueue and AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how the task's host URL is constructed. Using AppEngineHttpQueue requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform`

func (AppEngineHttpQueueArgs) ElementType

func (AppEngineHttpQueueArgs) ElementType() reflect.Type

func (AppEngineHttpQueueArgs) ToAppEngineHttpQueueOutput

func (i AppEngineHttpQueueArgs) ToAppEngineHttpQueueOutput() AppEngineHttpQueueOutput

func (AppEngineHttpQueueArgs) ToAppEngineHttpQueueOutputWithContext

func (i AppEngineHttpQueueArgs) ToAppEngineHttpQueueOutputWithContext(ctx context.Context) AppEngineHttpQueueOutput

func (AppEngineHttpQueueArgs) ToAppEngineHttpQueuePtrOutput

func (i AppEngineHttpQueueArgs) ToAppEngineHttpQueuePtrOutput() AppEngineHttpQueuePtrOutput

func (AppEngineHttpQueueArgs) ToAppEngineHttpQueuePtrOutputWithContext

func (i AppEngineHttpQueueArgs) ToAppEngineHttpQueuePtrOutputWithContext(ctx context.Context) AppEngineHttpQueuePtrOutput

type AppEngineHttpQueueInput

type AppEngineHttpQueueInput interface {
	pulumi.Input

	ToAppEngineHttpQueueOutput() AppEngineHttpQueueOutput
	ToAppEngineHttpQueueOutputWithContext(context.Context) AppEngineHttpQueueOutput
}

AppEngineHttpQueueInput is an input type that accepts AppEngineHttpQueueArgs and AppEngineHttpQueueOutput values. You can construct a concrete instance of `AppEngineHttpQueueInput` via:

AppEngineHttpQueueArgs{...}

type AppEngineHttpQueueOutput

type AppEngineHttpQueueOutput struct{ *pulumi.OutputState }

App Engine HTTP queue. The task will be delivered to the App Engine application hostname specified by its AppEngineHttpQueue and AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how the task's host URL is constructed. Using AppEngineHttpQueue requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform`

func (AppEngineHttpQueueOutput) AppEngineRoutingOverride

func (o AppEngineHttpQueueOutput) AppEngineRoutingOverride() AppEngineRoutingPtrOutput

Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpQueueOutput) ElementType

func (AppEngineHttpQueueOutput) ElementType() reflect.Type

func (AppEngineHttpQueueOutput) ToAppEngineHttpQueueOutput

func (o AppEngineHttpQueueOutput) ToAppEngineHttpQueueOutput() AppEngineHttpQueueOutput

func (AppEngineHttpQueueOutput) ToAppEngineHttpQueueOutputWithContext

func (o AppEngineHttpQueueOutput) ToAppEngineHttpQueueOutputWithContext(ctx context.Context) AppEngineHttpQueueOutput

func (AppEngineHttpQueueOutput) ToAppEngineHttpQueuePtrOutput

func (o AppEngineHttpQueueOutput) ToAppEngineHttpQueuePtrOutput() AppEngineHttpQueuePtrOutput

func (AppEngineHttpQueueOutput) ToAppEngineHttpQueuePtrOutputWithContext

func (o AppEngineHttpQueueOutput) ToAppEngineHttpQueuePtrOutputWithContext(ctx context.Context) AppEngineHttpQueuePtrOutput

type AppEngineHttpQueuePtrInput

type AppEngineHttpQueuePtrInput interface {
	pulumi.Input

	ToAppEngineHttpQueuePtrOutput() AppEngineHttpQueuePtrOutput
	ToAppEngineHttpQueuePtrOutputWithContext(context.Context) AppEngineHttpQueuePtrOutput
}

AppEngineHttpQueuePtrInput is an input type that accepts AppEngineHttpQueueArgs, AppEngineHttpQueuePtr and AppEngineHttpQueuePtrOutput values. You can construct a concrete instance of `AppEngineHttpQueuePtrInput` via:

        AppEngineHttpQueueArgs{...}

or:

        nil

type AppEngineHttpQueuePtrOutput

type AppEngineHttpQueuePtrOutput struct{ *pulumi.OutputState }

func (AppEngineHttpQueuePtrOutput) AppEngineRoutingOverride

func (o AppEngineHttpQueuePtrOutput) AppEngineRoutingOverride() AppEngineRoutingPtrOutput

Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpQueuePtrOutput) Elem

func (AppEngineHttpQueuePtrOutput) ElementType

func (AppEngineHttpQueuePtrOutput) ToAppEngineHttpQueuePtrOutput

func (o AppEngineHttpQueuePtrOutput) ToAppEngineHttpQueuePtrOutput() AppEngineHttpQueuePtrOutput

func (AppEngineHttpQueuePtrOutput) ToAppEngineHttpQueuePtrOutputWithContext

func (o AppEngineHttpQueuePtrOutput) ToAppEngineHttpQueuePtrOutputWithContext(ctx context.Context) AppEngineHttpQueuePtrOutput

type AppEngineHttpQueueResponse

type AppEngineHttpQueueResponse struct {
	// Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRoutingOverride AppEngineRoutingResponse `pulumi:"appEngineRoutingOverride"`
}

App Engine HTTP queue. The task will be delivered to the App Engine application hostname specified by its AppEngineHttpQueue and AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how the task's host URL is constructed. Using AppEngineHttpQueue requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform`

type AppEngineHttpQueueResponseArgs

type AppEngineHttpQueueResponseArgs struct {
	// Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRoutingOverride AppEngineRoutingResponseInput `pulumi:"appEngineRoutingOverride"`
}

App Engine HTTP queue. The task will be delivered to the App Engine application hostname specified by its AppEngineHttpQueue and AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how the task's host URL is constructed. Using AppEngineHttpQueue requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform`

func (AppEngineHttpQueueResponseArgs) ElementType

func (AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponseOutput

func (i AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponseOutput() AppEngineHttpQueueResponseOutput

func (AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponseOutputWithContext

func (i AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponseOutputWithContext(ctx context.Context) AppEngineHttpQueueResponseOutput

func (AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponsePtrOutput

func (i AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponsePtrOutput() AppEngineHttpQueueResponsePtrOutput

func (AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponsePtrOutputWithContext

func (i AppEngineHttpQueueResponseArgs) ToAppEngineHttpQueueResponsePtrOutputWithContext(ctx context.Context) AppEngineHttpQueueResponsePtrOutput

type AppEngineHttpQueueResponseInput

type AppEngineHttpQueueResponseInput interface {
	pulumi.Input

	ToAppEngineHttpQueueResponseOutput() AppEngineHttpQueueResponseOutput
	ToAppEngineHttpQueueResponseOutputWithContext(context.Context) AppEngineHttpQueueResponseOutput
}

AppEngineHttpQueueResponseInput is an input type that accepts AppEngineHttpQueueResponseArgs and AppEngineHttpQueueResponseOutput values. You can construct a concrete instance of `AppEngineHttpQueueResponseInput` via:

AppEngineHttpQueueResponseArgs{...}

type AppEngineHttpQueueResponseOutput

type AppEngineHttpQueueResponseOutput struct{ *pulumi.OutputState }

App Engine HTTP queue. The task will be delivered to the App Engine application hostname specified by its AppEngineHttpQueue and AppEngineHttpRequest. The documentation for AppEngineHttpRequest explains how the task's host URL is constructed. Using AppEngineHttpQueue requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform`

func (AppEngineHttpQueueResponseOutput) AppEngineRoutingOverride

Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpQueueResponseOutput) ElementType

func (AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponseOutput

func (o AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponseOutput() AppEngineHttpQueueResponseOutput

func (AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponseOutputWithContext

func (o AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponseOutputWithContext(ctx context.Context) AppEngineHttpQueueResponseOutput

func (AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponsePtrOutput

func (o AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponsePtrOutput() AppEngineHttpQueueResponsePtrOutput

func (AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponsePtrOutputWithContext

func (o AppEngineHttpQueueResponseOutput) ToAppEngineHttpQueueResponsePtrOutputWithContext(ctx context.Context) AppEngineHttpQueueResponsePtrOutput

type AppEngineHttpQueueResponsePtrInput

type AppEngineHttpQueueResponsePtrInput interface {
	pulumi.Input

	ToAppEngineHttpQueueResponsePtrOutput() AppEngineHttpQueueResponsePtrOutput
	ToAppEngineHttpQueueResponsePtrOutputWithContext(context.Context) AppEngineHttpQueueResponsePtrOutput
}

AppEngineHttpQueueResponsePtrInput is an input type that accepts AppEngineHttpQueueResponseArgs, AppEngineHttpQueueResponsePtr and AppEngineHttpQueueResponsePtrOutput values. You can construct a concrete instance of `AppEngineHttpQueueResponsePtrInput` via:

        AppEngineHttpQueueResponseArgs{...}

or:

        nil

type AppEngineHttpQueueResponsePtrOutput

type AppEngineHttpQueueResponsePtrOutput struct{ *pulumi.OutputState }

func (AppEngineHttpQueueResponsePtrOutput) AppEngineRoutingOverride

Overrides for the task-level app_engine_routing. If set, `app_engine_routing_override` is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpQueueResponsePtrOutput) Elem

func (AppEngineHttpQueueResponsePtrOutput) ElementType

func (AppEngineHttpQueueResponsePtrOutput) ToAppEngineHttpQueueResponsePtrOutput

func (o AppEngineHttpQueueResponsePtrOutput) ToAppEngineHttpQueueResponsePtrOutput() AppEngineHttpQueueResponsePtrOutput

func (AppEngineHttpQueueResponsePtrOutput) ToAppEngineHttpQueueResponsePtrOutputWithContext

func (o AppEngineHttpQueueResponsePtrOutput) ToAppEngineHttpQueueResponsePtrOutputWithContext(ctx context.Context) AppEngineHttpQueueResponsePtrOutput

type AppEngineHttpRequest

type AppEngineHttpRequest struct {
	// Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRouting *AppEngineRouting `pulumi:"appEngineRouting"`
	// HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.
	Body *string `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.
	Headers map[string]string `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).
	HttpMethod *AppEngineHttpRequestHttpMethod `pulumi:"httpMethod"`
	// The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
	RelativeUri *string `pulumi:"relativeUri"`
}

App Engine HTTP request. The message defines the HTTP request that is sent to an App Engine app when the task is dispatched. Using AppEngineHttpRequest requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform` The task will be delivered to the App Engine app which belongs to the same project as the queue. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and how routing is affected by [dispatch files](https://cloud.google.com/appengine/docs/python/config/dispatchref). Traffic is encrypted during transport and never leaves Google datacenters. Because this traffic is carried over a communication mechanism internal to Google, you cannot explicitly set the protocol (for example, HTTP or HTTPS). The request to the handler, however, will appear to have used the HTTP protocol. The AppEngineRouting used to construct the URL that the task is delivered to can be set at the queue-level or task-level: * If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing. The `url` that the task will be sent to is: * `url =` host `+` relative_uri Tasks can be dispatched to secure app handlers, unsecure app handlers, and URIs restricted with [`login: admin`](https://cloud.google.com/appengine/docs/standard/python/config/appref). Because tasks are not run as any user, they cannot be dispatched to URIs restricted with [`login: required`](https://cloud.google.com/appengine/docs/standard/python/config/appref) Task dispatches also do not follow redirects. The task attempt has succeeded if the app's request handler returns an HTTP response code in the range [`200` - `299`]. The task attempt has failed if the app's handler returns a non-2xx response code or Cloud Tasks does not receive response before the deadline. Failed tasks will be retried according to the retry configuration. `503` (Service Unavailable) is considered an App Engine system error instead of an application error and will cause Cloud Tasks' traffic congestion control to temporarily throttle the queue's dispatches. Unlike other types of task targets, a `429` (Too Many Requests) response from an app handler does not cause traffic congestion control to throttle the queue.

type AppEngineHttpRequestArgs

type AppEngineHttpRequestArgs struct {
	// Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRouting AppEngineRoutingPtrInput `pulumi:"appEngineRouting"`
	// HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.
	Body pulumi.StringPtrInput `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.
	Headers pulumi.StringMapInput `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).
	HttpMethod AppEngineHttpRequestHttpMethodPtrInput `pulumi:"httpMethod"`
	// The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
	RelativeUri pulumi.StringPtrInput `pulumi:"relativeUri"`
}

App Engine HTTP request. The message defines the HTTP request that is sent to an App Engine app when the task is dispatched. Using AppEngineHttpRequest requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform` The task will be delivered to the App Engine app which belongs to the same project as the queue. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and how routing is affected by [dispatch files](https://cloud.google.com/appengine/docs/python/config/dispatchref). Traffic is encrypted during transport and never leaves Google datacenters. Because this traffic is carried over a communication mechanism internal to Google, you cannot explicitly set the protocol (for example, HTTP or HTTPS). The request to the handler, however, will appear to have used the HTTP protocol. The AppEngineRouting used to construct the URL that the task is delivered to can be set at the queue-level or task-level: * If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing. The `url` that the task will be sent to is: * `url =` host `+` relative_uri Tasks can be dispatched to secure app handlers, unsecure app handlers, and URIs restricted with [`login: admin`](https://cloud.google.com/appengine/docs/standard/python/config/appref). Because tasks are not run as any user, they cannot be dispatched to URIs restricted with [`login: required`](https://cloud.google.com/appengine/docs/standard/python/config/appref) Task dispatches also do not follow redirects. The task attempt has succeeded if the app's request handler returns an HTTP response code in the range [`200` - `299`]. The task attempt has failed if the app's handler returns a non-2xx response code or Cloud Tasks does not receive response before the deadline. Failed tasks will be retried according to the retry configuration. `503` (Service Unavailable) is considered an App Engine system error instead of an application error and will cause Cloud Tasks' traffic congestion control to temporarily throttle the queue's dispatches. Unlike other types of task targets, a `429` (Too Many Requests) response from an app handler does not cause traffic congestion control to throttle the queue.

func (AppEngineHttpRequestArgs) ElementType

func (AppEngineHttpRequestArgs) ElementType() reflect.Type

func (AppEngineHttpRequestArgs) ToAppEngineHttpRequestOutput

func (i AppEngineHttpRequestArgs) ToAppEngineHttpRequestOutput() AppEngineHttpRequestOutput

func (AppEngineHttpRequestArgs) ToAppEngineHttpRequestOutputWithContext

func (i AppEngineHttpRequestArgs) ToAppEngineHttpRequestOutputWithContext(ctx context.Context) AppEngineHttpRequestOutput

func (AppEngineHttpRequestArgs) ToAppEngineHttpRequestPtrOutput

func (i AppEngineHttpRequestArgs) ToAppEngineHttpRequestPtrOutput() AppEngineHttpRequestPtrOutput

func (AppEngineHttpRequestArgs) ToAppEngineHttpRequestPtrOutputWithContext

func (i AppEngineHttpRequestArgs) ToAppEngineHttpRequestPtrOutputWithContext(ctx context.Context) AppEngineHttpRequestPtrOutput

type AppEngineHttpRequestHttpMethod added in v0.4.0

type AppEngineHttpRequestHttpMethod string

The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).

func (AppEngineHttpRequestHttpMethod) ElementType added in v0.4.0

func (AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodOutput added in v0.6.0

func (e AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodOutput() AppEngineHttpRequestHttpMethodOutput

func (AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodOutputWithContext added in v0.6.0

func (e AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodOutputWithContext(ctx context.Context) AppEngineHttpRequestHttpMethodOutput

func (AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodPtrOutput added in v0.6.0

func (e AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodPtrOutput() AppEngineHttpRequestHttpMethodPtrOutput

func (AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodPtrOutputWithContext added in v0.6.0

func (e AppEngineHttpRequestHttpMethod) ToAppEngineHttpRequestHttpMethodPtrOutputWithContext(ctx context.Context) AppEngineHttpRequestHttpMethodPtrOutput

func (AppEngineHttpRequestHttpMethod) ToStringOutput added in v0.4.0

func (AppEngineHttpRequestHttpMethod) ToStringOutputWithContext added in v0.4.0

func (e AppEngineHttpRequestHttpMethod) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (AppEngineHttpRequestHttpMethod) ToStringPtrOutput added in v0.4.0

func (AppEngineHttpRequestHttpMethod) ToStringPtrOutputWithContext added in v0.4.0

func (e AppEngineHttpRequestHttpMethod) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type AppEngineHttpRequestHttpMethodInput added in v0.6.0

type AppEngineHttpRequestHttpMethodInput interface {
	pulumi.Input

	ToAppEngineHttpRequestHttpMethodOutput() AppEngineHttpRequestHttpMethodOutput
	ToAppEngineHttpRequestHttpMethodOutputWithContext(context.Context) AppEngineHttpRequestHttpMethodOutput
}

AppEngineHttpRequestHttpMethodInput is an input type that accepts AppEngineHttpRequestHttpMethodArgs and AppEngineHttpRequestHttpMethodOutput values. You can construct a concrete instance of `AppEngineHttpRequestHttpMethodInput` via:

AppEngineHttpRequestHttpMethodArgs{...}

type AppEngineHttpRequestHttpMethodOutput added in v0.6.0

type AppEngineHttpRequestHttpMethodOutput struct{ *pulumi.OutputState }

func (AppEngineHttpRequestHttpMethodOutput) ElementType added in v0.6.0

func (AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodOutput added in v0.6.0

func (o AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodOutput() AppEngineHttpRequestHttpMethodOutput

func (AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodOutputWithContext added in v0.6.0

func (o AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodOutputWithContext(ctx context.Context) AppEngineHttpRequestHttpMethodOutput

func (AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodPtrOutput added in v0.6.0

func (o AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodPtrOutput() AppEngineHttpRequestHttpMethodPtrOutput

func (AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodPtrOutputWithContext added in v0.6.0

func (o AppEngineHttpRequestHttpMethodOutput) ToAppEngineHttpRequestHttpMethodPtrOutputWithContext(ctx context.Context) AppEngineHttpRequestHttpMethodPtrOutput

func (AppEngineHttpRequestHttpMethodOutput) ToStringOutput added in v0.6.0

func (AppEngineHttpRequestHttpMethodOutput) ToStringOutputWithContext added in v0.6.0

func (o AppEngineHttpRequestHttpMethodOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (AppEngineHttpRequestHttpMethodOutput) ToStringPtrOutput added in v0.6.0

func (AppEngineHttpRequestHttpMethodOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o AppEngineHttpRequestHttpMethodOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type AppEngineHttpRequestHttpMethodPtrInput added in v0.6.0

type AppEngineHttpRequestHttpMethodPtrInput interface {
	pulumi.Input

	ToAppEngineHttpRequestHttpMethodPtrOutput() AppEngineHttpRequestHttpMethodPtrOutput
	ToAppEngineHttpRequestHttpMethodPtrOutputWithContext(context.Context) AppEngineHttpRequestHttpMethodPtrOutput
}

func AppEngineHttpRequestHttpMethodPtr added in v0.6.0

func AppEngineHttpRequestHttpMethodPtr(v string) AppEngineHttpRequestHttpMethodPtrInput

type AppEngineHttpRequestHttpMethodPtrOutput added in v0.6.0

type AppEngineHttpRequestHttpMethodPtrOutput struct{ *pulumi.OutputState }

func (AppEngineHttpRequestHttpMethodPtrOutput) Elem added in v0.6.0

func (AppEngineHttpRequestHttpMethodPtrOutput) ElementType added in v0.6.0

func (AppEngineHttpRequestHttpMethodPtrOutput) ToAppEngineHttpRequestHttpMethodPtrOutput added in v0.6.0

func (o AppEngineHttpRequestHttpMethodPtrOutput) ToAppEngineHttpRequestHttpMethodPtrOutput() AppEngineHttpRequestHttpMethodPtrOutput

func (AppEngineHttpRequestHttpMethodPtrOutput) ToAppEngineHttpRequestHttpMethodPtrOutputWithContext added in v0.6.0

func (o AppEngineHttpRequestHttpMethodPtrOutput) ToAppEngineHttpRequestHttpMethodPtrOutputWithContext(ctx context.Context) AppEngineHttpRequestHttpMethodPtrOutput

func (AppEngineHttpRequestHttpMethodPtrOutput) ToStringPtrOutput added in v0.6.0

func (AppEngineHttpRequestHttpMethodPtrOutput) ToStringPtrOutputWithContext added in v0.6.0

type AppEngineHttpRequestInput

type AppEngineHttpRequestInput interface {
	pulumi.Input

	ToAppEngineHttpRequestOutput() AppEngineHttpRequestOutput
	ToAppEngineHttpRequestOutputWithContext(context.Context) AppEngineHttpRequestOutput
}

AppEngineHttpRequestInput is an input type that accepts AppEngineHttpRequestArgs and AppEngineHttpRequestOutput values. You can construct a concrete instance of `AppEngineHttpRequestInput` via:

AppEngineHttpRequestArgs{...}

type AppEngineHttpRequestOutput

type AppEngineHttpRequestOutput struct{ *pulumi.OutputState }

App Engine HTTP request. The message defines the HTTP request that is sent to an App Engine app when the task is dispatched. Using AppEngineHttpRequest requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform` The task will be delivered to the App Engine app which belongs to the same project as the queue. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and how routing is affected by [dispatch files](https://cloud.google.com/appengine/docs/python/config/dispatchref). Traffic is encrypted during transport and never leaves Google datacenters. Because this traffic is carried over a communication mechanism internal to Google, you cannot explicitly set the protocol (for example, HTTP or HTTPS). The request to the handler, however, will appear to have used the HTTP protocol. The AppEngineRouting used to construct the URL that the task is delivered to can be set at the queue-level or task-level: * If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing. The `url` that the task will be sent to is: * `url =` host `+` relative_uri Tasks can be dispatched to secure app handlers, unsecure app handlers, and URIs restricted with [`login: admin`](https://cloud.google.com/appengine/docs/standard/python/config/appref). Because tasks are not run as any user, they cannot be dispatched to URIs restricted with [`login: required`](https://cloud.google.com/appengine/docs/standard/python/config/appref) Task dispatches also do not follow redirects. The task attempt has succeeded if the app's request handler returns an HTTP response code in the range [`200` - `299`]. The task attempt has failed if the app's handler returns a non-2xx response code or Cloud Tasks does not receive response before the deadline. Failed tasks will be retried according to the retry configuration. `503` (Service Unavailable) is considered an App Engine system error instead of an application error and will cause Cloud Tasks' traffic congestion control to temporarily throttle the queue's dispatches. Unlike other types of task targets, a `429` (Too Many Requests) response from an app handler does not cause traffic congestion control to throttle the queue.

func (AppEngineHttpRequestOutput) AppEngineRouting

Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpRequestOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.

func (AppEngineHttpRequestOutput) ElementType

func (AppEngineHttpRequestOutput) ElementType() reflect.Type

func (AppEngineHttpRequestOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.

func (AppEngineHttpRequestOutput) HttpMethod

The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).

func (AppEngineHttpRequestOutput) RelativeUri

The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.

func (AppEngineHttpRequestOutput) ToAppEngineHttpRequestOutput

func (o AppEngineHttpRequestOutput) ToAppEngineHttpRequestOutput() AppEngineHttpRequestOutput

func (AppEngineHttpRequestOutput) ToAppEngineHttpRequestOutputWithContext

func (o AppEngineHttpRequestOutput) ToAppEngineHttpRequestOutputWithContext(ctx context.Context) AppEngineHttpRequestOutput

func (AppEngineHttpRequestOutput) ToAppEngineHttpRequestPtrOutput

func (o AppEngineHttpRequestOutput) ToAppEngineHttpRequestPtrOutput() AppEngineHttpRequestPtrOutput

func (AppEngineHttpRequestOutput) ToAppEngineHttpRequestPtrOutputWithContext

func (o AppEngineHttpRequestOutput) ToAppEngineHttpRequestPtrOutputWithContext(ctx context.Context) AppEngineHttpRequestPtrOutput

type AppEngineHttpRequestPtrInput

type AppEngineHttpRequestPtrInput interface {
	pulumi.Input

	ToAppEngineHttpRequestPtrOutput() AppEngineHttpRequestPtrOutput
	ToAppEngineHttpRequestPtrOutputWithContext(context.Context) AppEngineHttpRequestPtrOutput
}

AppEngineHttpRequestPtrInput is an input type that accepts AppEngineHttpRequestArgs, AppEngineHttpRequestPtr and AppEngineHttpRequestPtrOutput values. You can construct a concrete instance of `AppEngineHttpRequestPtrInput` via:

        AppEngineHttpRequestArgs{...}

or:

        nil

type AppEngineHttpRequestPtrOutput

type AppEngineHttpRequestPtrOutput struct{ *pulumi.OutputState }

func (AppEngineHttpRequestPtrOutput) AppEngineRouting

Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpRequestPtrOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.

func (AppEngineHttpRequestPtrOutput) Elem

func (AppEngineHttpRequestPtrOutput) ElementType

func (AppEngineHttpRequestPtrOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.

func (AppEngineHttpRequestPtrOutput) HttpMethod

The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).

func (AppEngineHttpRequestPtrOutput) RelativeUri

The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.

func (AppEngineHttpRequestPtrOutput) ToAppEngineHttpRequestPtrOutput

func (o AppEngineHttpRequestPtrOutput) ToAppEngineHttpRequestPtrOutput() AppEngineHttpRequestPtrOutput

func (AppEngineHttpRequestPtrOutput) ToAppEngineHttpRequestPtrOutputWithContext

func (o AppEngineHttpRequestPtrOutput) ToAppEngineHttpRequestPtrOutputWithContext(ctx context.Context) AppEngineHttpRequestPtrOutput

type AppEngineHttpRequestResponse

type AppEngineHttpRequestResponse struct {
	// Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRouting AppEngineRoutingResponse `pulumi:"appEngineRouting"`
	// HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.
	Body string `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.
	Headers map[string]string `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).
	HttpMethod string `pulumi:"httpMethod"`
	// The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
	RelativeUri string `pulumi:"relativeUri"`
}

App Engine HTTP request. The message defines the HTTP request that is sent to an App Engine app when the task is dispatched. Using AppEngineHttpRequest requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform` The task will be delivered to the App Engine app which belongs to the same project as the queue. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and how routing is affected by [dispatch files](https://cloud.google.com/appengine/docs/python/config/dispatchref). Traffic is encrypted during transport and never leaves Google datacenters. Because this traffic is carried over a communication mechanism internal to Google, you cannot explicitly set the protocol (for example, HTTP or HTTPS). The request to the handler, however, will appear to have used the HTTP protocol. The AppEngineRouting used to construct the URL that the task is delivered to can be set at the queue-level or task-level: * If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing. The `url` that the task will be sent to is: * `url =` host `+` relative_uri Tasks can be dispatched to secure app handlers, unsecure app handlers, and URIs restricted with [`login: admin`](https://cloud.google.com/appengine/docs/standard/python/config/appref). Because tasks are not run as any user, they cannot be dispatched to URIs restricted with [`login: required`](https://cloud.google.com/appengine/docs/standard/python/config/appref) Task dispatches also do not follow redirects. The task attempt has succeeded if the app's request handler returns an HTTP response code in the range [`200` - `299`]. The task attempt has failed if the app's handler returns a non-2xx response code or Cloud Tasks does not receive response before the deadline. Failed tasks will be retried according to the retry configuration. `503` (Service Unavailable) is considered an App Engine system error instead of an application error and will cause Cloud Tasks' traffic congestion control to temporarily throttle the queue's dispatches. Unlike other types of task targets, a `429` (Too Many Requests) response from an app handler does not cause traffic congestion control to throttle the queue.

type AppEngineHttpRequestResponseArgs

type AppEngineHttpRequestResponseArgs struct {
	// Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.
	AppEngineRouting AppEngineRoutingResponseInput `pulumi:"appEngineRouting"`
	// HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.
	Body pulumi.StringInput `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.
	Headers pulumi.StringMapInput `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).
	HttpMethod pulumi.StringInput `pulumi:"httpMethod"`
	// The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.
	RelativeUri pulumi.StringInput `pulumi:"relativeUri"`
}

App Engine HTTP request. The message defines the HTTP request that is sent to an App Engine app when the task is dispatched. Using AppEngineHttpRequest requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform` The task will be delivered to the App Engine app which belongs to the same project as the queue. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and how routing is affected by [dispatch files](https://cloud.google.com/appengine/docs/python/config/dispatchref). Traffic is encrypted during transport and never leaves Google datacenters. Because this traffic is carried over a communication mechanism internal to Google, you cannot explicitly set the protocol (for example, HTTP or HTTPS). The request to the handler, however, will appear to have used the HTTP protocol. The AppEngineRouting used to construct the URL that the task is delivered to can be set at the queue-level or task-level: * If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing. The `url` that the task will be sent to is: * `url =` host `+` relative_uri Tasks can be dispatched to secure app handlers, unsecure app handlers, and URIs restricted with [`login: admin`](https://cloud.google.com/appengine/docs/standard/python/config/appref). Because tasks are not run as any user, they cannot be dispatched to URIs restricted with [`login: required`](https://cloud.google.com/appengine/docs/standard/python/config/appref) Task dispatches also do not follow redirects. The task attempt has succeeded if the app's request handler returns an HTTP response code in the range [`200` - `299`]. The task attempt has failed if the app's handler returns a non-2xx response code or Cloud Tasks does not receive response before the deadline. Failed tasks will be retried according to the retry configuration. `503` (Service Unavailable) is considered an App Engine system error instead of an application error and will cause Cloud Tasks' traffic congestion control to temporarily throttle the queue's dispatches. Unlike other types of task targets, a `429` (Too Many Requests) response from an app handler does not cause traffic congestion control to throttle the queue.

func (AppEngineHttpRequestResponseArgs) ElementType

func (AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponseOutput

func (i AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponseOutput() AppEngineHttpRequestResponseOutput

func (AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponseOutputWithContext

func (i AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponseOutputWithContext(ctx context.Context) AppEngineHttpRequestResponseOutput

func (AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponsePtrOutput

func (i AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponsePtrOutput() AppEngineHttpRequestResponsePtrOutput

func (AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponsePtrOutputWithContext

func (i AppEngineHttpRequestResponseArgs) ToAppEngineHttpRequestResponsePtrOutputWithContext(ctx context.Context) AppEngineHttpRequestResponsePtrOutput

type AppEngineHttpRequestResponseInput

type AppEngineHttpRequestResponseInput interface {
	pulumi.Input

	ToAppEngineHttpRequestResponseOutput() AppEngineHttpRequestResponseOutput
	ToAppEngineHttpRequestResponseOutputWithContext(context.Context) AppEngineHttpRequestResponseOutput
}

AppEngineHttpRequestResponseInput is an input type that accepts AppEngineHttpRequestResponseArgs and AppEngineHttpRequestResponseOutput values. You can construct a concrete instance of `AppEngineHttpRequestResponseInput` via:

AppEngineHttpRequestResponseArgs{...}

type AppEngineHttpRequestResponseOutput

type AppEngineHttpRequestResponseOutput struct{ *pulumi.OutputState }

App Engine HTTP request. The message defines the HTTP request that is sent to an App Engine app when the task is dispatched. Using AppEngineHttpRequest requires [`appengine.applications.get`](https://cloud.google.com/appengine/docs/admin-api/access-control) Google IAM permission for the project and the following scope: `https://www.googleapis.com/auth/cloud-platform` The task will be delivered to the App Engine app which belongs to the same project as the queue. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and how routing is affected by [dispatch files](https://cloud.google.com/appengine/docs/python/config/dispatchref). Traffic is encrypted during transport and never leaves Google datacenters. Because this traffic is carried over a communication mechanism internal to Google, you cannot explicitly set the protocol (for example, HTTP or HTTPS). The request to the handler, however, will appear to have used the HTTP protocol. The AppEngineRouting used to construct the URL that the task is delivered to can be set at the queue-level or task-level: * If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing. The `url` that the task will be sent to is: * `url =` host `+` relative_uri Tasks can be dispatched to secure app handlers, unsecure app handlers, and URIs restricted with [`login: admin`](https://cloud.google.com/appengine/docs/standard/python/config/appref). Because tasks are not run as any user, they cannot be dispatched to URIs restricted with [`login: required`](https://cloud.google.com/appengine/docs/standard/python/config/appref) Task dispatches also do not follow redirects. The task attempt has succeeded if the app's request handler returns an HTTP response code in the range [`200` - `299`]. The task attempt has failed if the app's handler returns a non-2xx response code or Cloud Tasks does not receive response before the deadline. Failed tasks will be retried according to the retry configuration. `503` (Service Unavailable) is considered an App Engine system error instead of an application error and will cause Cloud Tasks' traffic congestion control to temporarily throttle the queue's dispatches. Unlike other types of task targets, a `429` (Too Many Requests) response from an app handler does not cause traffic congestion control to throttle the queue.

func (AppEngineHttpRequestResponseOutput) AppEngineRouting

Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpRequestResponseOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.

func (AppEngineHttpRequestResponseOutput) ElementType

func (AppEngineHttpRequestResponseOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.

func (AppEngineHttpRequestResponseOutput) HttpMethod

The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).

func (AppEngineHttpRequestResponseOutput) RelativeUri

The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.

func (AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponseOutput

func (o AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponseOutput() AppEngineHttpRequestResponseOutput

func (AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponseOutputWithContext

func (o AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponseOutputWithContext(ctx context.Context) AppEngineHttpRequestResponseOutput

func (AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponsePtrOutput

func (o AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponsePtrOutput() AppEngineHttpRequestResponsePtrOutput

func (AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponsePtrOutputWithContext

func (o AppEngineHttpRequestResponseOutput) ToAppEngineHttpRequestResponsePtrOutputWithContext(ctx context.Context) AppEngineHttpRequestResponsePtrOutput

type AppEngineHttpRequestResponsePtrInput

type AppEngineHttpRequestResponsePtrInput interface {
	pulumi.Input

	ToAppEngineHttpRequestResponsePtrOutput() AppEngineHttpRequestResponsePtrOutput
	ToAppEngineHttpRequestResponsePtrOutputWithContext(context.Context) AppEngineHttpRequestResponsePtrOutput
}

AppEngineHttpRequestResponsePtrInput is an input type that accepts AppEngineHttpRequestResponseArgs, AppEngineHttpRequestResponsePtr and AppEngineHttpRequestResponsePtrOutput values. You can construct a concrete instance of `AppEngineHttpRequestResponsePtrInput` via:

        AppEngineHttpRequestResponseArgs{...}

or:

        nil

type AppEngineHttpRequestResponsePtrOutput

type AppEngineHttpRequestResponsePtrOutput struct{ *pulumi.OutputState }

func (AppEngineHttpRequestResponsePtrOutput) AppEngineRouting

Task-level setting for App Engine routing. If set, app_engine_routing_override is used for all tasks in the queue, no matter what the setting is for the task-level app_engine_routing.

func (AppEngineHttpRequestResponsePtrOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST or PUT. It is an error to set a body on a task with an incompatible HttpMethod.

func (AppEngineHttpRequestResponsePtrOutput) Elem

func (AppEngineHttpRequestResponsePtrOutput) ElementType

func (AppEngineHttpRequestResponsePtrOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. Repeated headers are not supported but a header value can contain commas. Cloud Tasks sets some headers to default values: * `User-Agent`: By default, this header is `"AppEngine-Google; (+http://code.google.com/appengine)"`. This header can be modified, but Cloud Tasks will append `"AppEngine-Google; (+http://code.google.com/appengine)"` to the modified `User-Agent`. If the task has a body, Cloud Tasks sets the following headers: * `Content-Type`: By default, the `Content-Type` header is set to `"application/octet-stream"`. The default can be overridden by explicitly setting `Content-Type` to a particular media type when the task is created. For example, `Content-Type` can be set to `"application/json"`. * `Content-Length`: This is computed by Cloud Tasks. This value is output only. It cannot be changed. The headers below cannot be set or overridden: * `Host` * `X-Google-*` * `X-AppEngine-*` In addition, Cloud Tasks sets some headers when the task is dispatched, such as headers containing information about the task; see [request headers](https://cloud.google.com/tasks/docs/creating-appengine-handlers#reading_request_headers). These headers are set only when the task is dispatched, so they are not visible when the task is returned in a Cloud Tasks response. Although there is no specific limit for the maximum number of headers or the size, there is a limit on the maximum size of the Task. For more information, see the CreateTask documentation.

func (AppEngineHttpRequestResponsePtrOutput) HttpMethod

The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled).

func (AppEngineHttpRequestResponsePtrOutput) RelativeUri

The relative URI. The relative URI must begin with "/" and must be a valid HTTP relative URI. It can contain a path and query string arguments. If the relative URI is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters.

func (AppEngineHttpRequestResponsePtrOutput) ToAppEngineHttpRequestResponsePtrOutput

func (o AppEngineHttpRequestResponsePtrOutput) ToAppEngineHttpRequestResponsePtrOutput() AppEngineHttpRequestResponsePtrOutput

func (AppEngineHttpRequestResponsePtrOutput) ToAppEngineHttpRequestResponsePtrOutputWithContext

func (o AppEngineHttpRequestResponsePtrOutput) ToAppEngineHttpRequestResponsePtrOutputWithContext(ctx context.Context) AppEngineHttpRequestResponsePtrOutput

type AppEngineRouting

type AppEngineRouting struct {
	// App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).
	Instance *string `pulumi:"instance"`
	// App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Service *string `pulumi:"service"`
	// App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Version *string `pulumi:"version"`
}

App Engine Routing. Defines routing characteristics specific to App Engine - service, version, and instance. For more information about services, versions, and instances see [An Overview of App Engine](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine), [Microservices Architecture on Google App Engine](https://cloud.google.com/appengine/docs/python/microservices-on-app-engine), [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed), and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

type AppEngineRoutingArgs

type AppEngineRoutingArgs struct {
	// App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).
	Instance pulumi.StringPtrInput `pulumi:"instance"`
	// App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Service pulumi.StringPtrInput `pulumi:"service"`
	// App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Version pulumi.StringPtrInput `pulumi:"version"`
}

App Engine Routing. Defines routing characteristics specific to App Engine - service, version, and instance. For more information about services, versions, and instances see [An Overview of App Engine](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine), [Microservices Architecture on Google App Engine](https://cloud.google.com/appengine/docs/python/microservices-on-app-engine), [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed), and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingArgs) ElementType

func (AppEngineRoutingArgs) ElementType() reflect.Type

func (AppEngineRoutingArgs) ToAppEngineRoutingOutput

func (i AppEngineRoutingArgs) ToAppEngineRoutingOutput() AppEngineRoutingOutput

func (AppEngineRoutingArgs) ToAppEngineRoutingOutputWithContext

func (i AppEngineRoutingArgs) ToAppEngineRoutingOutputWithContext(ctx context.Context) AppEngineRoutingOutput

func (AppEngineRoutingArgs) ToAppEngineRoutingPtrOutput

func (i AppEngineRoutingArgs) ToAppEngineRoutingPtrOutput() AppEngineRoutingPtrOutput

func (AppEngineRoutingArgs) ToAppEngineRoutingPtrOutputWithContext

func (i AppEngineRoutingArgs) ToAppEngineRoutingPtrOutputWithContext(ctx context.Context) AppEngineRoutingPtrOutput

type AppEngineRoutingInput

type AppEngineRoutingInput interface {
	pulumi.Input

	ToAppEngineRoutingOutput() AppEngineRoutingOutput
	ToAppEngineRoutingOutputWithContext(context.Context) AppEngineRoutingOutput
}

AppEngineRoutingInput is an input type that accepts AppEngineRoutingArgs and AppEngineRoutingOutput values. You can construct a concrete instance of `AppEngineRoutingInput` via:

AppEngineRoutingArgs{...}

type AppEngineRoutingOutput

type AppEngineRoutingOutput struct{ *pulumi.OutputState }

App Engine Routing. Defines routing characteristics specific to App Engine - service, version, and instance. For more information about services, versions, and instances see [An Overview of App Engine](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine), [Microservices Architecture on Google App Engine](https://cloud.google.com/appengine/docs/python/microservices-on-app-engine), [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed), and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingOutput) ElementType

func (AppEngineRoutingOutput) ElementType() reflect.Type

func (AppEngineRoutingOutput) Instance

App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingOutput) Service

App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

func (AppEngineRoutingOutput) ToAppEngineRoutingOutput

func (o AppEngineRoutingOutput) ToAppEngineRoutingOutput() AppEngineRoutingOutput

func (AppEngineRoutingOutput) ToAppEngineRoutingOutputWithContext

func (o AppEngineRoutingOutput) ToAppEngineRoutingOutputWithContext(ctx context.Context) AppEngineRoutingOutput

func (AppEngineRoutingOutput) ToAppEngineRoutingPtrOutput

func (o AppEngineRoutingOutput) ToAppEngineRoutingPtrOutput() AppEngineRoutingPtrOutput

func (AppEngineRoutingOutput) ToAppEngineRoutingPtrOutputWithContext

func (o AppEngineRoutingOutput) ToAppEngineRoutingPtrOutputWithContext(ctx context.Context) AppEngineRoutingPtrOutput

func (AppEngineRoutingOutput) Version

App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

type AppEngineRoutingPtrInput

type AppEngineRoutingPtrInput interface {
	pulumi.Input

	ToAppEngineRoutingPtrOutput() AppEngineRoutingPtrOutput
	ToAppEngineRoutingPtrOutputWithContext(context.Context) AppEngineRoutingPtrOutput
}

AppEngineRoutingPtrInput is an input type that accepts AppEngineRoutingArgs, AppEngineRoutingPtr and AppEngineRoutingPtrOutput values. You can construct a concrete instance of `AppEngineRoutingPtrInput` via:

        AppEngineRoutingArgs{...}

or:

        nil

type AppEngineRoutingPtrOutput

type AppEngineRoutingPtrOutput struct{ *pulumi.OutputState }

func (AppEngineRoutingPtrOutput) Elem

func (AppEngineRoutingPtrOutput) ElementType

func (AppEngineRoutingPtrOutput) ElementType() reflect.Type

func (AppEngineRoutingPtrOutput) Instance

App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingPtrOutput) Service

App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

func (AppEngineRoutingPtrOutput) ToAppEngineRoutingPtrOutput

func (o AppEngineRoutingPtrOutput) ToAppEngineRoutingPtrOutput() AppEngineRoutingPtrOutput

func (AppEngineRoutingPtrOutput) ToAppEngineRoutingPtrOutputWithContext

func (o AppEngineRoutingPtrOutput) ToAppEngineRoutingPtrOutputWithContext(ctx context.Context) AppEngineRoutingPtrOutput

func (AppEngineRoutingPtrOutput) Version

App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

type AppEngineRoutingResponse

type AppEngineRoutingResponse struct {
	// The host that the task is sent to. The host is constructed from the domain name of the app associated with the queue's project ID (for example .appspot.com), and the service, version, and instance. Tasks which were created using the App Engine SDK might have a custom domain name. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed).
	Host string `pulumi:"host"`
	// App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).
	Instance string `pulumi:"instance"`
	// App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Service string `pulumi:"service"`
	// App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Version string `pulumi:"version"`
}

App Engine Routing. Defines routing characteristics specific to App Engine - service, version, and instance. For more information about services, versions, and instances see [An Overview of App Engine](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine), [Microservices Architecture on Google App Engine](https://cloud.google.com/appengine/docs/python/microservices-on-app-engine), [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed), and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

type AppEngineRoutingResponseArgs

type AppEngineRoutingResponseArgs struct {
	// The host that the task is sent to. The host is constructed from the domain name of the app associated with the queue's project ID (for example .appspot.com), and the service, version, and instance. Tasks which were created using the App Engine SDK might have a custom domain name. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed).
	Host pulumi.StringInput `pulumi:"host"`
	// App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).
	Instance pulumi.StringInput `pulumi:"instance"`
	// App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Service pulumi.StringInput `pulumi:"service"`
	// App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.
	Version pulumi.StringInput `pulumi:"version"`
}

App Engine Routing. Defines routing characteristics specific to App Engine - service, version, and instance. For more information about services, versions, and instances see [An Overview of App Engine](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine), [Microservices Architecture on Google App Engine](https://cloud.google.com/appengine/docs/python/microservices-on-app-engine), [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed), and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingResponseArgs) ElementType

func (AppEngineRoutingResponseArgs) ToAppEngineRoutingResponseOutput

func (i AppEngineRoutingResponseArgs) ToAppEngineRoutingResponseOutput() AppEngineRoutingResponseOutput

func (AppEngineRoutingResponseArgs) ToAppEngineRoutingResponseOutputWithContext

func (i AppEngineRoutingResponseArgs) ToAppEngineRoutingResponseOutputWithContext(ctx context.Context) AppEngineRoutingResponseOutput

func (AppEngineRoutingResponseArgs) ToAppEngineRoutingResponsePtrOutput

func (i AppEngineRoutingResponseArgs) ToAppEngineRoutingResponsePtrOutput() AppEngineRoutingResponsePtrOutput

func (AppEngineRoutingResponseArgs) ToAppEngineRoutingResponsePtrOutputWithContext

func (i AppEngineRoutingResponseArgs) ToAppEngineRoutingResponsePtrOutputWithContext(ctx context.Context) AppEngineRoutingResponsePtrOutput

type AppEngineRoutingResponseInput

type AppEngineRoutingResponseInput interface {
	pulumi.Input

	ToAppEngineRoutingResponseOutput() AppEngineRoutingResponseOutput
	ToAppEngineRoutingResponseOutputWithContext(context.Context) AppEngineRoutingResponseOutput
}

AppEngineRoutingResponseInput is an input type that accepts AppEngineRoutingResponseArgs and AppEngineRoutingResponseOutput values. You can construct a concrete instance of `AppEngineRoutingResponseInput` via:

AppEngineRoutingResponseArgs{...}

type AppEngineRoutingResponseOutput

type AppEngineRoutingResponseOutput struct{ *pulumi.OutputState }

App Engine Routing. Defines routing characteristics specific to App Engine - service, version, and instance. For more information about services, versions, and instances see [An Overview of App Engine](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine), [Microservices Architecture on Google App Engine](https://cloud.google.com/appengine/docs/python/microservices-on-app-engine), [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed), and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingResponseOutput) ElementType

func (AppEngineRoutingResponseOutput) Host

The host that the task is sent to. The host is constructed from the domain name of the app associated with the queue's project ID (for example .appspot.com), and the service, version, and instance. Tasks which were created using the App Engine SDK might have a custom domain name. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed).

func (AppEngineRoutingResponseOutput) Instance

App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingResponseOutput) Service

App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

func (AppEngineRoutingResponseOutput) ToAppEngineRoutingResponseOutput

func (o AppEngineRoutingResponseOutput) ToAppEngineRoutingResponseOutput() AppEngineRoutingResponseOutput

func (AppEngineRoutingResponseOutput) ToAppEngineRoutingResponseOutputWithContext

func (o AppEngineRoutingResponseOutput) ToAppEngineRoutingResponseOutputWithContext(ctx context.Context) AppEngineRoutingResponseOutput

func (AppEngineRoutingResponseOutput) ToAppEngineRoutingResponsePtrOutput

func (o AppEngineRoutingResponseOutput) ToAppEngineRoutingResponsePtrOutput() AppEngineRoutingResponsePtrOutput

func (AppEngineRoutingResponseOutput) ToAppEngineRoutingResponsePtrOutputWithContext

func (o AppEngineRoutingResponseOutput) ToAppEngineRoutingResponsePtrOutputWithContext(ctx context.Context) AppEngineRoutingResponsePtrOutput

func (AppEngineRoutingResponseOutput) Version

App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

type AppEngineRoutingResponsePtrInput

type AppEngineRoutingResponsePtrInput interface {
	pulumi.Input

	ToAppEngineRoutingResponsePtrOutput() AppEngineRoutingResponsePtrOutput
	ToAppEngineRoutingResponsePtrOutputWithContext(context.Context) AppEngineRoutingResponsePtrOutput
}

AppEngineRoutingResponsePtrInput is an input type that accepts AppEngineRoutingResponseArgs, AppEngineRoutingResponsePtr and AppEngineRoutingResponsePtrOutput values. You can construct a concrete instance of `AppEngineRoutingResponsePtrInput` via:

        AppEngineRoutingResponseArgs{...}

or:

        nil

type AppEngineRoutingResponsePtrOutput

type AppEngineRoutingResponsePtrOutput struct{ *pulumi.OutputState }

func (AppEngineRoutingResponsePtrOutput) Elem

func (AppEngineRoutingResponsePtrOutput) ElementType

func (AppEngineRoutingResponsePtrOutput) Host

The host that the task is sent to. The host is constructed from the domain name of the app associated with the queue's project ID (for example .appspot.com), and the service, version, and instance. Tasks which were created using the App Engine SDK might have a custom domain name. For more information, see [How Requests are Routed](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed).

func (AppEngineRoutingResponsePtrOutput) Instance

App instance. By default, the task is sent to an instance which is available when the task is attempted. Requests can only be sent to a specific instance if [manual scaling is used in App Engine Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes). App Engine Flex does not support instances. For more information, see [App Engine Standard request routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed) and [App Engine Flex request routing](https://cloud.google.com/appengine/docs/flexible/python/how-requests-are-routed).

func (AppEngineRoutingResponsePtrOutput) Service

App service. By default, the task is sent to the service which is the default service when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

func (AppEngineRoutingResponsePtrOutput) ToAppEngineRoutingResponsePtrOutput

func (o AppEngineRoutingResponsePtrOutput) ToAppEngineRoutingResponsePtrOutput() AppEngineRoutingResponsePtrOutput

func (AppEngineRoutingResponsePtrOutput) ToAppEngineRoutingResponsePtrOutputWithContext

func (o AppEngineRoutingResponsePtrOutput) ToAppEngineRoutingResponsePtrOutputWithContext(ctx context.Context) AppEngineRoutingResponsePtrOutput

func (AppEngineRoutingResponsePtrOutput) Version

App version. By default, the task is sent to the version which is the default version when the task is attempted. For some queues or tasks which were created using the App Engine Task Queue API, host is not parsable into service, version, and instance. For example, some tasks which were created using the App Engine SDK use a custom domain name; custom domains are not parsed by Cloud Tasks. If host is not parsable, then service, version, and instance are the empty string.

type AttemptResponse

type AttemptResponse struct {
	// The time that this attempt was dispatched. `dispatch_time` will be truncated to the nearest microsecond.
	DispatchTime string `pulumi:"dispatchTime"`
	// The response from the worker for this attempt. If `response_time` is unset, then the task has not been attempted or is currently running and the `response_status` field is meaningless.
	ResponseStatus StatusResponse `pulumi:"responseStatus"`
	// The time that this attempt response was received. `response_time` will be truncated to the nearest microsecond.
	ResponseTime string `pulumi:"responseTime"`
	// The time that this attempt was scheduled. `schedule_time` will be truncated to the nearest microsecond.
	ScheduleTime string `pulumi:"scheduleTime"`
}

The status of a task attempt.

type AttemptResponseArgs

type AttemptResponseArgs struct {
	// The time that this attempt was dispatched. `dispatch_time` will be truncated to the nearest microsecond.
	DispatchTime pulumi.StringInput `pulumi:"dispatchTime"`
	// The response from the worker for this attempt. If `response_time` is unset, then the task has not been attempted or is currently running and the `response_status` field is meaningless.
	ResponseStatus StatusResponseInput `pulumi:"responseStatus"`
	// The time that this attempt response was received. `response_time` will be truncated to the nearest microsecond.
	ResponseTime pulumi.StringInput `pulumi:"responseTime"`
	// The time that this attempt was scheduled. `schedule_time` will be truncated to the nearest microsecond.
	ScheduleTime pulumi.StringInput `pulumi:"scheduleTime"`
}

The status of a task attempt.

func (AttemptResponseArgs) ElementType

func (AttemptResponseArgs) ElementType() reflect.Type

func (AttemptResponseArgs) ToAttemptResponseOutput

func (i AttemptResponseArgs) ToAttemptResponseOutput() AttemptResponseOutput

func (AttemptResponseArgs) ToAttemptResponseOutputWithContext

func (i AttemptResponseArgs) ToAttemptResponseOutputWithContext(ctx context.Context) AttemptResponseOutput

func (AttemptResponseArgs) ToAttemptResponsePtrOutput

func (i AttemptResponseArgs) ToAttemptResponsePtrOutput() AttemptResponsePtrOutput

func (AttemptResponseArgs) ToAttemptResponsePtrOutputWithContext

func (i AttemptResponseArgs) ToAttemptResponsePtrOutputWithContext(ctx context.Context) AttemptResponsePtrOutput

type AttemptResponseInput

type AttemptResponseInput interface {
	pulumi.Input

	ToAttemptResponseOutput() AttemptResponseOutput
	ToAttemptResponseOutputWithContext(context.Context) AttemptResponseOutput
}

AttemptResponseInput is an input type that accepts AttemptResponseArgs and AttemptResponseOutput values. You can construct a concrete instance of `AttemptResponseInput` via:

AttemptResponseArgs{...}

type AttemptResponseOutput

type AttemptResponseOutput struct{ *pulumi.OutputState }

The status of a task attempt.

func (AttemptResponseOutput) DispatchTime

func (o AttemptResponseOutput) DispatchTime() pulumi.StringOutput

The time that this attempt was dispatched. `dispatch_time` will be truncated to the nearest microsecond.

func (AttemptResponseOutput) ElementType

func (AttemptResponseOutput) ElementType() reflect.Type

func (AttemptResponseOutput) ResponseStatus

func (o AttemptResponseOutput) ResponseStatus() StatusResponseOutput

The response from the worker for this attempt. If `response_time` is unset, then the task has not been attempted or is currently running and the `response_status` field is meaningless.

func (AttemptResponseOutput) ResponseTime

func (o AttemptResponseOutput) ResponseTime() pulumi.StringOutput

The time that this attempt response was received. `response_time` will be truncated to the nearest microsecond.

func (AttemptResponseOutput) ScheduleTime

func (o AttemptResponseOutput) ScheduleTime() pulumi.StringOutput

The time that this attempt was scheduled. `schedule_time` will be truncated to the nearest microsecond.

func (AttemptResponseOutput) ToAttemptResponseOutput

func (o AttemptResponseOutput) ToAttemptResponseOutput() AttemptResponseOutput

func (AttemptResponseOutput) ToAttemptResponseOutputWithContext

func (o AttemptResponseOutput) ToAttemptResponseOutputWithContext(ctx context.Context) AttemptResponseOutput

func (AttemptResponseOutput) ToAttemptResponsePtrOutput

func (o AttemptResponseOutput) ToAttemptResponsePtrOutput() AttemptResponsePtrOutput

func (AttemptResponseOutput) ToAttemptResponsePtrOutputWithContext

func (o AttemptResponseOutput) ToAttemptResponsePtrOutputWithContext(ctx context.Context) AttemptResponsePtrOutput

type AttemptResponsePtrInput

type AttemptResponsePtrInput interface {
	pulumi.Input

	ToAttemptResponsePtrOutput() AttemptResponsePtrOutput
	ToAttemptResponsePtrOutputWithContext(context.Context) AttemptResponsePtrOutput
}

AttemptResponsePtrInput is an input type that accepts AttemptResponseArgs, AttemptResponsePtr and AttemptResponsePtrOutput values. You can construct a concrete instance of `AttemptResponsePtrInput` via:

        AttemptResponseArgs{...}

or:

        nil

type AttemptResponsePtrOutput

type AttemptResponsePtrOutput struct{ *pulumi.OutputState }

func (AttemptResponsePtrOutput) DispatchTime

The time that this attempt was dispatched. `dispatch_time` will be truncated to the nearest microsecond.

func (AttemptResponsePtrOutput) Elem

func (AttemptResponsePtrOutput) ElementType

func (AttemptResponsePtrOutput) ElementType() reflect.Type

func (AttemptResponsePtrOutput) ResponseStatus

The response from the worker for this attempt. If `response_time` is unset, then the task has not been attempted or is currently running and the `response_status` field is meaningless.

func (AttemptResponsePtrOutput) ResponseTime

The time that this attempt response was received. `response_time` will be truncated to the nearest microsecond.

func (AttemptResponsePtrOutput) ScheduleTime

The time that this attempt was scheduled. `schedule_time` will be truncated to the nearest microsecond.

func (AttemptResponsePtrOutput) ToAttemptResponsePtrOutput

func (o AttemptResponsePtrOutput) ToAttemptResponsePtrOutput() AttemptResponsePtrOutput

func (AttemptResponsePtrOutput) ToAttemptResponsePtrOutputWithContext

func (o AttemptResponsePtrOutput) ToAttemptResponsePtrOutputWithContext(ctx context.Context) AttemptResponsePtrOutput

type Binding

type Binding struct {
	// The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Condition *Expr `pulumi:"condition"`
	// Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.
	Members []string `pulumi:"members"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role *string `pulumi:"role"`
}

Associates `members`, or principals, with a `role`.

type BindingArgs

type BindingArgs struct {
	// The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Condition ExprPtrInput `pulumi:"condition"`
	// Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.
	Members pulumi.StringArrayInput `pulumi:"members"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role pulumi.StringPtrInput `pulumi:"role"`
}

Associates `members`, or principals, with a `role`.

func (BindingArgs) ElementType

func (BindingArgs) ElementType() reflect.Type

func (BindingArgs) ToBindingOutput

func (i BindingArgs) ToBindingOutput() BindingOutput

func (BindingArgs) ToBindingOutputWithContext

func (i BindingArgs) ToBindingOutputWithContext(ctx context.Context) BindingOutput

type BindingArray

type BindingArray []BindingInput

func (BindingArray) ElementType

func (BindingArray) ElementType() reflect.Type

func (BindingArray) ToBindingArrayOutput

func (i BindingArray) ToBindingArrayOutput() BindingArrayOutput

func (BindingArray) ToBindingArrayOutputWithContext

func (i BindingArray) ToBindingArrayOutputWithContext(ctx context.Context) BindingArrayOutput

type BindingArrayInput

type BindingArrayInput interface {
	pulumi.Input

	ToBindingArrayOutput() BindingArrayOutput
	ToBindingArrayOutputWithContext(context.Context) BindingArrayOutput
}

BindingArrayInput is an input type that accepts BindingArray and BindingArrayOutput values. You can construct a concrete instance of `BindingArrayInput` via:

BindingArray{ BindingArgs{...} }

type BindingArrayOutput

type BindingArrayOutput struct{ *pulumi.OutputState }

func (BindingArrayOutput) ElementType

func (BindingArrayOutput) ElementType() reflect.Type

func (BindingArrayOutput) Index

func (BindingArrayOutput) ToBindingArrayOutput

func (o BindingArrayOutput) ToBindingArrayOutput() BindingArrayOutput

func (BindingArrayOutput) ToBindingArrayOutputWithContext

func (o BindingArrayOutput) ToBindingArrayOutputWithContext(ctx context.Context) BindingArrayOutput

type BindingInput

type BindingInput interface {
	pulumi.Input

	ToBindingOutput() BindingOutput
	ToBindingOutputWithContext(context.Context) BindingOutput
}

BindingInput is an input type that accepts BindingArgs and BindingOutput values. You can construct a concrete instance of `BindingInput` via:

BindingArgs{...}

type BindingOutput

type BindingOutput struct{ *pulumi.OutputState }

Associates `members`, or principals, with a `role`.

func (BindingOutput) Condition

func (o BindingOutput) Condition() ExprPtrOutput

The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).

func (BindingOutput) ElementType

func (BindingOutput) ElementType() reflect.Type

func (BindingOutput) Members

Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.

func (BindingOutput) Role

Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.

func (BindingOutput) ToBindingOutput

func (o BindingOutput) ToBindingOutput() BindingOutput

func (BindingOutput) ToBindingOutputWithContext

func (o BindingOutput) ToBindingOutputWithContext(ctx context.Context) BindingOutput

type BindingResponse

type BindingResponse struct {
	// The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Condition ExprResponse `pulumi:"condition"`
	// Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.
	Members []string `pulumi:"members"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role string `pulumi:"role"`
}

Associates `members`, or principals, with a `role`.

type BindingResponseArgs

type BindingResponseArgs struct {
	// The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Condition ExprResponseInput `pulumi:"condition"`
	// Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.
	Members pulumi.StringArrayInput `pulumi:"members"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role pulumi.StringInput `pulumi:"role"`
}

Associates `members`, or principals, with a `role`.

func (BindingResponseArgs) ElementType

func (BindingResponseArgs) ElementType() reflect.Type

func (BindingResponseArgs) ToBindingResponseOutput

func (i BindingResponseArgs) ToBindingResponseOutput() BindingResponseOutput

func (BindingResponseArgs) ToBindingResponseOutputWithContext

func (i BindingResponseArgs) ToBindingResponseOutputWithContext(ctx context.Context) BindingResponseOutput

type BindingResponseArray

type BindingResponseArray []BindingResponseInput

func (BindingResponseArray) ElementType

func (BindingResponseArray) ElementType() reflect.Type

func (BindingResponseArray) ToBindingResponseArrayOutput

func (i BindingResponseArray) ToBindingResponseArrayOutput() BindingResponseArrayOutput

func (BindingResponseArray) ToBindingResponseArrayOutputWithContext

func (i BindingResponseArray) ToBindingResponseArrayOutputWithContext(ctx context.Context) BindingResponseArrayOutput

type BindingResponseArrayInput

type BindingResponseArrayInput interface {
	pulumi.Input

	ToBindingResponseArrayOutput() BindingResponseArrayOutput
	ToBindingResponseArrayOutputWithContext(context.Context) BindingResponseArrayOutput
}

BindingResponseArrayInput is an input type that accepts BindingResponseArray and BindingResponseArrayOutput values. You can construct a concrete instance of `BindingResponseArrayInput` via:

BindingResponseArray{ BindingResponseArgs{...} }

type BindingResponseArrayOutput

type BindingResponseArrayOutput struct{ *pulumi.OutputState }

func (BindingResponseArrayOutput) ElementType

func (BindingResponseArrayOutput) ElementType() reflect.Type

func (BindingResponseArrayOutput) Index

func (BindingResponseArrayOutput) ToBindingResponseArrayOutput

func (o BindingResponseArrayOutput) ToBindingResponseArrayOutput() BindingResponseArrayOutput

func (BindingResponseArrayOutput) ToBindingResponseArrayOutputWithContext

func (o BindingResponseArrayOutput) ToBindingResponseArrayOutputWithContext(ctx context.Context) BindingResponseArrayOutput

type BindingResponseInput

type BindingResponseInput interface {
	pulumi.Input

	ToBindingResponseOutput() BindingResponseOutput
	ToBindingResponseOutputWithContext(context.Context) BindingResponseOutput
}

BindingResponseInput is an input type that accepts BindingResponseArgs and BindingResponseOutput values. You can construct a concrete instance of `BindingResponseInput` via:

BindingResponseArgs{...}

type BindingResponseOutput

type BindingResponseOutput struct{ *pulumi.OutputState }

Associates `members`, or principals, with a `role`.

func (BindingResponseOutput) Condition

The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).

func (BindingResponseOutput) ElementType

func (BindingResponseOutput) ElementType() reflect.Type

func (BindingResponseOutput) Members

Specifies the principals requesting access for a Cloud Platform resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`.

func (BindingResponseOutput) Role

Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.

func (BindingResponseOutput) ToBindingResponseOutput

func (o BindingResponseOutput) ToBindingResponseOutput() BindingResponseOutput

func (BindingResponseOutput) ToBindingResponseOutputWithContext

func (o BindingResponseOutput) ToBindingResponseOutputWithContext(ctx context.Context) BindingResponseOutput

type Expr

type Expr struct {
	// Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
	Description *string `pulumi:"description"`
	// Textual representation of an expression in Common Expression Language syntax.
	Expression *string `pulumi:"expression"`
	// Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
	Location *string `pulumi:"location"`
	// Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
	Title *string `pulumi:"title"`
}

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

type ExprArgs

type ExprArgs struct {
	// Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
	Description pulumi.StringPtrInput `pulumi:"description"`
	// Textual representation of an expression in Common Expression Language syntax.
	Expression pulumi.StringPtrInput `pulumi:"expression"`
	// Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
	Location pulumi.StringPtrInput `pulumi:"location"`
	// Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
	Title pulumi.StringPtrInput `pulumi:"title"`
}

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

func (ExprArgs) ElementType

func (ExprArgs) ElementType() reflect.Type

func (ExprArgs) ToExprOutput

func (i ExprArgs) ToExprOutput() ExprOutput

func (ExprArgs) ToExprOutputWithContext

func (i ExprArgs) ToExprOutputWithContext(ctx context.Context) ExprOutput

func (ExprArgs) ToExprPtrOutput

func (i ExprArgs) ToExprPtrOutput() ExprPtrOutput

func (ExprArgs) ToExprPtrOutputWithContext

func (i ExprArgs) ToExprPtrOutputWithContext(ctx context.Context) ExprPtrOutput

type ExprInput

type ExprInput interface {
	pulumi.Input

	ToExprOutput() ExprOutput
	ToExprOutputWithContext(context.Context) ExprOutput
}

ExprInput is an input type that accepts ExprArgs and ExprOutput values. You can construct a concrete instance of `ExprInput` via:

ExprArgs{...}

type ExprOutput

type ExprOutput struct{ *pulumi.OutputState }

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

func (ExprOutput) Description

func (o ExprOutput) Description() pulumi.StringPtrOutput

Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

func (ExprOutput) ElementType

func (ExprOutput) ElementType() reflect.Type

func (ExprOutput) Expression

func (o ExprOutput) Expression() pulumi.StringPtrOutput

Textual representation of an expression in Common Expression Language syntax.

func (ExprOutput) Location

func (o ExprOutput) Location() pulumi.StringPtrOutput

Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.

func (ExprOutput) Title

func (o ExprOutput) Title() pulumi.StringPtrOutput

Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

func (ExprOutput) ToExprOutput

func (o ExprOutput) ToExprOutput() ExprOutput

func (ExprOutput) ToExprOutputWithContext

func (o ExprOutput) ToExprOutputWithContext(ctx context.Context) ExprOutput

func (ExprOutput) ToExprPtrOutput

func (o ExprOutput) ToExprPtrOutput() ExprPtrOutput

func (ExprOutput) ToExprPtrOutputWithContext

func (o ExprOutput) ToExprPtrOutputWithContext(ctx context.Context) ExprPtrOutput

type ExprPtrInput

type ExprPtrInput interface {
	pulumi.Input

	ToExprPtrOutput() ExprPtrOutput
	ToExprPtrOutputWithContext(context.Context) ExprPtrOutput
}

ExprPtrInput is an input type that accepts ExprArgs, ExprPtr and ExprPtrOutput values. You can construct a concrete instance of `ExprPtrInput` via:

        ExprArgs{...}

or:

        nil

func ExprPtr

func ExprPtr(v *ExprArgs) ExprPtrInput

type ExprPtrOutput

type ExprPtrOutput struct{ *pulumi.OutputState }

func (ExprPtrOutput) Description

func (o ExprPtrOutput) Description() pulumi.StringPtrOutput

Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

func (ExprPtrOutput) Elem

func (o ExprPtrOutput) Elem() ExprOutput

func (ExprPtrOutput) ElementType

func (ExprPtrOutput) ElementType() reflect.Type

func (ExprPtrOutput) Expression

func (o ExprPtrOutput) Expression() pulumi.StringPtrOutput

Textual representation of an expression in Common Expression Language syntax.

func (ExprPtrOutput) Location

func (o ExprPtrOutput) Location() pulumi.StringPtrOutput

Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.

func (ExprPtrOutput) Title

Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

func (ExprPtrOutput) ToExprPtrOutput

func (o ExprPtrOutput) ToExprPtrOutput() ExprPtrOutput

func (ExprPtrOutput) ToExprPtrOutputWithContext

func (o ExprPtrOutput) ToExprPtrOutputWithContext(ctx context.Context) ExprPtrOutput

type ExprResponse

type ExprResponse struct {
	// Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
	Description string `pulumi:"description"`
	// Textual representation of an expression in Common Expression Language syntax.
	Expression string `pulumi:"expression"`
	// Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
	Location string `pulumi:"location"`
	// Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
	Title string `pulumi:"title"`
}

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

type ExprResponseArgs

type ExprResponseArgs struct {
	// Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
	Description pulumi.StringInput `pulumi:"description"`
	// Textual representation of an expression in Common Expression Language syntax.
	Expression pulumi.StringInput `pulumi:"expression"`
	// Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
	Location pulumi.StringInput `pulumi:"location"`
	// Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
	Title pulumi.StringInput `pulumi:"title"`
}

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

func (ExprResponseArgs) ElementType

func (ExprResponseArgs) ElementType() reflect.Type

func (ExprResponseArgs) ToExprResponseOutput

func (i ExprResponseArgs) ToExprResponseOutput() ExprResponseOutput

func (ExprResponseArgs) ToExprResponseOutputWithContext

func (i ExprResponseArgs) ToExprResponseOutputWithContext(ctx context.Context) ExprResponseOutput

type ExprResponseInput

type ExprResponseInput interface {
	pulumi.Input

	ToExprResponseOutput() ExprResponseOutput
	ToExprResponseOutputWithContext(context.Context) ExprResponseOutput
}

ExprResponseInput is an input type that accepts ExprResponseArgs and ExprResponseOutput values. You can construct a concrete instance of `ExprResponseInput` via:

ExprResponseArgs{...}

type ExprResponseOutput

type ExprResponseOutput struct{ *pulumi.OutputState }

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

func (ExprResponseOutput) Description

func (o ExprResponseOutput) Description() pulumi.StringOutput

Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

func (ExprResponseOutput) ElementType

func (ExprResponseOutput) ElementType() reflect.Type

func (ExprResponseOutput) Expression

func (o ExprResponseOutput) Expression() pulumi.StringOutput

Textual representation of an expression in Common Expression Language syntax.

func (ExprResponseOutput) Location

func (o ExprResponseOutput) Location() pulumi.StringOutput

Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.

func (ExprResponseOutput) Title

Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

func (ExprResponseOutput) ToExprResponseOutput

func (o ExprResponseOutput) ToExprResponseOutput() ExprResponseOutput

func (ExprResponseOutput) ToExprResponseOutputWithContext

func (o ExprResponseOutput) ToExprResponseOutputWithContext(ctx context.Context) ExprResponseOutput

type HttpRequest

type HttpRequest struct {
	// HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.
	Body *string `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.
	Headers map[string]string `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST.
	HttpMethod *HttpRequestHttpMethod `pulumi:"httpMethod"`
	// If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
	OauthToken *OAuthToken `pulumi:"oauthToken"`
	// If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
	OidcToken *OidcToken `pulumi:"oidcToken"`
	// The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.
	Url string `pulumi:"url"`
}

HTTP request. The task will be pushed to the worker as an HTTP request. If the worker or the redirected worker acknowledges the task by returning a successful HTTP response code ([`200` - `299`]), the task will be removed from the queue. If any other HTTP response code is returned or no response is received, the task will be retried according to the following: * User-specified throttling: retry configuration, rate limits, and the queue's state. * System throttling: To prevent the worker from overloading, Cloud Tasks may temporarily reduce the queue's effective rate. User-specified settings will not be changed. System throttling happens because: * Cloud Tasks backs off on all errors. Normally the backoff specified in rate limits will be used. But if the worker returns `429` (Too Many Requests), `503` (Service Unavailable), or the rate of errors is high, Cloud Tasks will use a higher backoff rate. The retry specified in the `Retry-After` HTTP response header is considered. * To prevent traffic spikes and to smooth sudden increases in traffic, dispatches ramp up slowly when the queue is newly created or idle and if large numbers of tasks suddenly become available to dispatch (due to spikes in create task rates, the queue being unpaused, or many tasks that are scheduled at the same time).

type HttpRequestArgs

type HttpRequestArgs struct {
	// HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.
	Body pulumi.StringPtrInput `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.
	Headers pulumi.StringMapInput `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST.
	HttpMethod HttpRequestHttpMethodPtrInput `pulumi:"httpMethod"`
	// If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
	OauthToken OAuthTokenPtrInput `pulumi:"oauthToken"`
	// If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
	OidcToken OidcTokenPtrInput `pulumi:"oidcToken"`
	// The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.
	Url pulumi.StringInput `pulumi:"url"`
}

HTTP request. The task will be pushed to the worker as an HTTP request. If the worker or the redirected worker acknowledges the task by returning a successful HTTP response code ([`200` - `299`]), the task will be removed from the queue. If any other HTTP response code is returned or no response is received, the task will be retried according to the following: * User-specified throttling: retry configuration, rate limits, and the queue's state. * System throttling: To prevent the worker from overloading, Cloud Tasks may temporarily reduce the queue's effective rate. User-specified settings will not be changed. System throttling happens because: * Cloud Tasks backs off on all errors. Normally the backoff specified in rate limits will be used. But if the worker returns `429` (Too Many Requests), `503` (Service Unavailable), or the rate of errors is high, Cloud Tasks will use a higher backoff rate. The retry specified in the `Retry-After` HTTP response header is considered. * To prevent traffic spikes and to smooth sudden increases in traffic, dispatches ramp up slowly when the queue is newly created or idle and if large numbers of tasks suddenly become available to dispatch (due to spikes in create task rates, the queue being unpaused, or many tasks that are scheduled at the same time).

func (HttpRequestArgs) ElementType

func (HttpRequestArgs) ElementType() reflect.Type

func (HttpRequestArgs) ToHttpRequestOutput

func (i HttpRequestArgs) ToHttpRequestOutput() HttpRequestOutput

func (HttpRequestArgs) ToHttpRequestOutputWithContext

func (i HttpRequestArgs) ToHttpRequestOutputWithContext(ctx context.Context) HttpRequestOutput

func (HttpRequestArgs) ToHttpRequestPtrOutput

func (i HttpRequestArgs) ToHttpRequestPtrOutput() HttpRequestPtrOutput

func (HttpRequestArgs) ToHttpRequestPtrOutputWithContext

func (i HttpRequestArgs) ToHttpRequestPtrOutputWithContext(ctx context.Context) HttpRequestPtrOutput

type HttpRequestHttpMethod added in v0.4.0

type HttpRequestHttpMethod string

The HTTP method to use for the request. The default is POST.

func (HttpRequestHttpMethod) ElementType added in v0.4.0

func (HttpRequestHttpMethod) ElementType() reflect.Type

func (HttpRequestHttpMethod) ToHttpRequestHttpMethodOutput added in v0.6.0

func (e HttpRequestHttpMethod) ToHttpRequestHttpMethodOutput() HttpRequestHttpMethodOutput

func (HttpRequestHttpMethod) ToHttpRequestHttpMethodOutputWithContext added in v0.6.0

func (e HttpRequestHttpMethod) ToHttpRequestHttpMethodOutputWithContext(ctx context.Context) HttpRequestHttpMethodOutput

func (HttpRequestHttpMethod) ToHttpRequestHttpMethodPtrOutput added in v0.6.0

func (e HttpRequestHttpMethod) ToHttpRequestHttpMethodPtrOutput() HttpRequestHttpMethodPtrOutput

func (HttpRequestHttpMethod) ToHttpRequestHttpMethodPtrOutputWithContext added in v0.6.0

func (e HttpRequestHttpMethod) ToHttpRequestHttpMethodPtrOutputWithContext(ctx context.Context) HttpRequestHttpMethodPtrOutput

func (HttpRequestHttpMethod) ToStringOutput added in v0.4.0

func (e HttpRequestHttpMethod) ToStringOutput() pulumi.StringOutput

func (HttpRequestHttpMethod) ToStringOutputWithContext added in v0.4.0

func (e HttpRequestHttpMethod) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (HttpRequestHttpMethod) ToStringPtrOutput added in v0.4.0

func (e HttpRequestHttpMethod) ToStringPtrOutput() pulumi.StringPtrOutput

func (HttpRequestHttpMethod) ToStringPtrOutputWithContext added in v0.4.0

func (e HttpRequestHttpMethod) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type HttpRequestHttpMethodInput added in v0.6.0

type HttpRequestHttpMethodInput interface {
	pulumi.Input

	ToHttpRequestHttpMethodOutput() HttpRequestHttpMethodOutput
	ToHttpRequestHttpMethodOutputWithContext(context.Context) HttpRequestHttpMethodOutput
}

HttpRequestHttpMethodInput is an input type that accepts HttpRequestHttpMethodArgs and HttpRequestHttpMethodOutput values. You can construct a concrete instance of `HttpRequestHttpMethodInput` via:

HttpRequestHttpMethodArgs{...}

type HttpRequestHttpMethodOutput added in v0.6.0

type HttpRequestHttpMethodOutput struct{ *pulumi.OutputState }

func (HttpRequestHttpMethodOutput) ElementType added in v0.6.0

func (HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodOutput added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodOutput() HttpRequestHttpMethodOutput

func (HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodOutputWithContext added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodOutputWithContext(ctx context.Context) HttpRequestHttpMethodOutput

func (HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodPtrOutput added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodPtrOutput() HttpRequestHttpMethodPtrOutput

func (HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodPtrOutputWithContext added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToHttpRequestHttpMethodPtrOutputWithContext(ctx context.Context) HttpRequestHttpMethodPtrOutput

func (HttpRequestHttpMethodOutput) ToStringOutput added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToStringOutput() pulumi.StringOutput

func (HttpRequestHttpMethodOutput) ToStringOutputWithContext added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (HttpRequestHttpMethodOutput) ToStringPtrOutput added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (HttpRequestHttpMethodOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o HttpRequestHttpMethodOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type HttpRequestHttpMethodPtrInput added in v0.6.0

type HttpRequestHttpMethodPtrInput interface {
	pulumi.Input

	ToHttpRequestHttpMethodPtrOutput() HttpRequestHttpMethodPtrOutput
	ToHttpRequestHttpMethodPtrOutputWithContext(context.Context) HttpRequestHttpMethodPtrOutput
}

func HttpRequestHttpMethodPtr added in v0.6.0

func HttpRequestHttpMethodPtr(v string) HttpRequestHttpMethodPtrInput

type HttpRequestHttpMethodPtrOutput added in v0.6.0

type HttpRequestHttpMethodPtrOutput struct{ *pulumi.OutputState }

func (HttpRequestHttpMethodPtrOutput) Elem added in v0.6.0

func (HttpRequestHttpMethodPtrOutput) ElementType added in v0.6.0

func (HttpRequestHttpMethodPtrOutput) ToHttpRequestHttpMethodPtrOutput added in v0.6.0

func (o HttpRequestHttpMethodPtrOutput) ToHttpRequestHttpMethodPtrOutput() HttpRequestHttpMethodPtrOutput

func (HttpRequestHttpMethodPtrOutput) ToHttpRequestHttpMethodPtrOutputWithContext added in v0.6.0

func (o HttpRequestHttpMethodPtrOutput) ToHttpRequestHttpMethodPtrOutputWithContext(ctx context.Context) HttpRequestHttpMethodPtrOutput

func (HttpRequestHttpMethodPtrOutput) ToStringPtrOutput added in v0.6.0

func (HttpRequestHttpMethodPtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o HttpRequestHttpMethodPtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type HttpRequestInput

type HttpRequestInput interface {
	pulumi.Input

	ToHttpRequestOutput() HttpRequestOutput
	ToHttpRequestOutputWithContext(context.Context) HttpRequestOutput
}

HttpRequestInput is an input type that accepts HttpRequestArgs and HttpRequestOutput values. You can construct a concrete instance of `HttpRequestInput` via:

HttpRequestArgs{...}

type HttpRequestOutput

type HttpRequestOutput struct{ *pulumi.OutputState }

HTTP request. The task will be pushed to the worker as an HTTP request. If the worker or the redirected worker acknowledges the task by returning a successful HTTP response code ([`200` - `299`]), the task will be removed from the queue. If any other HTTP response code is returned or no response is received, the task will be retried according to the following: * User-specified throttling: retry configuration, rate limits, and the queue's state. * System throttling: To prevent the worker from overloading, Cloud Tasks may temporarily reduce the queue's effective rate. User-specified settings will not be changed. System throttling happens because: * Cloud Tasks backs off on all errors. Normally the backoff specified in rate limits will be used. But if the worker returns `429` (Too Many Requests), `503` (Service Unavailable), or the rate of errors is high, Cloud Tasks will use a higher backoff rate. The retry specified in the `Retry-After` HTTP response header is considered. * To prevent traffic spikes and to smooth sudden increases in traffic, dispatches ramp up slowly when the queue is newly created or idle and if large numbers of tasks suddenly become available to dispatch (due to spikes in create task rates, the queue being unpaused, or many tasks that are scheduled at the same time).

func (HttpRequestOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.

func (HttpRequestOutput) ElementType

func (HttpRequestOutput) ElementType() reflect.Type

func (HttpRequestOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.

func (HttpRequestOutput) HttpMethod

The HTTP method to use for the request. The default is POST.

func (HttpRequestOutput) OauthToken

func (o HttpRequestOutput) OauthToken() OAuthTokenPtrOutput

If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (HttpRequestOutput) OidcToken

func (o HttpRequestOutput) OidcToken() OidcTokenPtrOutput

If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (HttpRequestOutput) ToHttpRequestOutput

func (o HttpRequestOutput) ToHttpRequestOutput() HttpRequestOutput

func (HttpRequestOutput) ToHttpRequestOutputWithContext

func (o HttpRequestOutput) ToHttpRequestOutputWithContext(ctx context.Context) HttpRequestOutput

func (HttpRequestOutput) ToHttpRequestPtrOutput

func (o HttpRequestOutput) ToHttpRequestPtrOutput() HttpRequestPtrOutput

func (HttpRequestOutput) ToHttpRequestPtrOutputWithContext

func (o HttpRequestOutput) ToHttpRequestPtrOutputWithContext(ctx context.Context) HttpRequestPtrOutput

func (HttpRequestOutput) Url

The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.

type HttpRequestPtrInput

type HttpRequestPtrInput interface {
	pulumi.Input

	ToHttpRequestPtrOutput() HttpRequestPtrOutput
	ToHttpRequestPtrOutputWithContext(context.Context) HttpRequestPtrOutput
}

HttpRequestPtrInput is an input type that accepts HttpRequestArgs, HttpRequestPtr and HttpRequestPtrOutput values. You can construct a concrete instance of `HttpRequestPtrInput` via:

        HttpRequestArgs{...}

or:

        nil

func HttpRequestPtr

func HttpRequestPtr(v *HttpRequestArgs) HttpRequestPtrInput

type HttpRequestPtrOutput

type HttpRequestPtrOutput struct{ *pulumi.OutputState }

func (HttpRequestPtrOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.

func (HttpRequestPtrOutput) Elem

func (HttpRequestPtrOutput) ElementType

func (HttpRequestPtrOutput) ElementType() reflect.Type

func (HttpRequestPtrOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.

func (HttpRequestPtrOutput) HttpMethod

The HTTP method to use for the request. The default is POST.

func (HttpRequestPtrOutput) OauthToken

If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (HttpRequestPtrOutput) OidcToken

If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (HttpRequestPtrOutput) ToHttpRequestPtrOutput

func (o HttpRequestPtrOutput) ToHttpRequestPtrOutput() HttpRequestPtrOutput

func (HttpRequestPtrOutput) ToHttpRequestPtrOutputWithContext

func (o HttpRequestPtrOutput) ToHttpRequestPtrOutputWithContext(ctx context.Context) HttpRequestPtrOutput

func (HttpRequestPtrOutput) Url

The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.

type HttpRequestResponse

type HttpRequestResponse struct {
	// HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.
	Body string `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.
	Headers map[string]string `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST.
	HttpMethod string `pulumi:"httpMethod"`
	// If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
	OauthToken OAuthTokenResponse `pulumi:"oauthToken"`
	// If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
	OidcToken OidcTokenResponse `pulumi:"oidcToken"`
	// The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.
	Url string `pulumi:"url"`
}

HTTP request. The task will be pushed to the worker as an HTTP request. If the worker or the redirected worker acknowledges the task by returning a successful HTTP response code ([`200` - `299`]), the task will be removed from the queue. If any other HTTP response code is returned or no response is received, the task will be retried according to the following: * User-specified throttling: retry configuration, rate limits, and the queue's state. * System throttling: To prevent the worker from overloading, Cloud Tasks may temporarily reduce the queue's effective rate. User-specified settings will not be changed. System throttling happens because: * Cloud Tasks backs off on all errors. Normally the backoff specified in rate limits will be used. But if the worker returns `429` (Too Many Requests), `503` (Service Unavailable), or the rate of errors is high, Cloud Tasks will use a higher backoff rate. The retry specified in the `Retry-After` HTTP response header is considered. * To prevent traffic spikes and to smooth sudden increases in traffic, dispatches ramp up slowly when the queue is newly created or idle and if large numbers of tasks suddenly become available to dispatch (due to spikes in create task rates, the queue being unpaused, or many tasks that are scheduled at the same time).

type HttpRequestResponseArgs

type HttpRequestResponseArgs struct {
	// HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.
	Body pulumi.StringInput `pulumi:"body"`
	// HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.
	Headers pulumi.StringMapInput `pulumi:"headers"`
	// The HTTP method to use for the request. The default is POST.
	HttpMethod pulumi.StringInput `pulumi:"httpMethod"`
	// If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.
	OauthToken OAuthTokenResponseInput `pulumi:"oauthToken"`
	// If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.
	OidcToken OidcTokenResponseInput `pulumi:"oidcToken"`
	// The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.
	Url pulumi.StringInput `pulumi:"url"`
}

HTTP request. The task will be pushed to the worker as an HTTP request. If the worker or the redirected worker acknowledges the task by returning a successful HTTP response code ([`200` - `299`]), the task will be removed from the queue. If any other HTTP response code is returned or no response is received, the task will be retried according to the following: * User-specified throttling: retry configuration, rate limits, and the queue's state. * System throttling: To prevent the worker from overloading, Cloud Tasks may temporarily reduce the queue's effective rate. User-specified settings will not be changed. System throttling happens because: * Cloud Tasks backs off on all errors. Normally the backoff specified in rate limits will be used. But if the worker returns `429` (Too Many Requests), `503` (Service Unavailable), or the rate of errors is high, Cloud Tasks will use a higher backoff rate. The retry specified in the `Retry-After` HTTP response header is considered. * To prevent traffic spikes and to smooth sudden increases in traffic, dispatches ramp up slowly when the queue is newly created or idle and if large numbers of tasks suddenly become available to dispatch (due to spikes in create task rates, the queue being unpaused, or many tasks that are scheduled at the same time).

func (HttpRequestResponseArgs) ElementType

func (HttpRequestResponseArgs) ElementType() reflect.Type

func (HttpRequestResponseArgs) ToHttpRequestResponseOutput

func (i HttpRequestResponseArgs) ToHttpRequestResponseOutput() HttpRequestResponseOutput

func (HttpRequestResponseArgs) ToHttpRequestResponseOutputWithContext

func (i HttpRequestResponseArgs) ToHttpRequestResponseOutputWithContext(ctx context.Context) HttpRequestResponseOutput

func (HttpRequestResponseArgs) ToHttpRequestResponsePtrOutput

func (i HttpRequestResponseArgs) ToHttpRequestResponsePtrOutput() HttpRequestResponsePtrOutput

func (HttpRequestResponseArgs) ToHttpRequestResponsePtrOutputWithContext

func (i HttpRequestResponseArgs) ToHttpRequestResponsePtrOutputWithContext(ctx context.Context) HttpRequestResponsePtrOutput

type HttpRequestResponseInput

type HttpRequestResponseInput interface {
	pulumi.Input

	ToHttpRequestResponseOutput() HttpRequestResponseOutput
	ToHttpRequestResponseOutputWithContext(context.Context) HttpRequestResponseOutput
}

HttpRequestResponseInput is an input type that accepts HttpRequestResponseArgs and HttpRequestResponseOutput values. You can construct a concrete instance of `HttpRequestResponseInput` via:

HttpRequestResponseArgs{...}

type HttpRequestResponseOutput

type HttpRequestResponseOutput struct{ *pulumi.OutputState }

HTTP request. The task will be pushed to the worker as an HTTP request. If the worker or the redirected worker acknowledges the task by returning a successful HTTP response code ([`200` - `299`]), the task will be removed from the queue. If any other HTTP response code is returned or no response is received, the task will be retried according to the following: * User-specified throttling: retry configuration, rate limits, and the queue's state. * System throttling: To prevent the worker from overloading, Cloud Tasks may temporarily reduce the queue's effective rate. User-specified settings will not be changed. System throttling happens because: * Cloud Tasks backs off on all errors. Normally the backoff specified in rate limits will be used. But if the worker returns `429` (Too Many Requests), `503` (Service Unavailable), or the rate of errors is high, Cloud Tasks will use a higher backoff rate. The retry specified in the `Retry-After` HTTP response header is considered. * To prevent traffic spikes and to smooth sudden increases in traffic, dispatches ramp up slowly when the queue is newly created or idle and if large numbers of tasks suddenly become available to dispatch (due to spikes in create task rates, the queue being unpaused, or many tasks that are scheduled at the same time).

func (HttpRequestResponseOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.

func (HttpRequestResponseOutput) ElementType

func (HttpRequestResponseOutput) ElementType() reflect.Type

func (HttpRequestResponseOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.

func (HttpRequestResponseOutput) HttpMethod

The HTTP method to use for the request. The default is POST.

func (HttpRequestResponseOutput) OauthToken

If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (HttpRequestResponseOutput) OidcToken

If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (HttpRequestResponseOutput) ToHttpRequestResponseOutput

func (o HttpRequestResponseOutput) ToHttpRequestResponseOutput() HttpRequestResponseOutput

func (HttpRequestResponseOutput) ToHttpRequestResponseOutputWithContext

func (o HttpRequestResponseOutput) ToHttpRequestResponseOutputWithContext(ctx context.Context) HttpRequestResponseOutput

func (HttpRequestResponseOutput) ToHttpRequestResponsePtrOutput

func (o HttpRequestResponseOutput) ToHttpRequestResponsePtrOutput() HttpRequestResponsePtrOutput

func (HttpRequestResponseOutput) ToHttpRequestResponsePtrOutputWithContext

func (o HttpRequestResponseOutput) ToHttpRequestResponsePtrOutputWithContext(ctx context.Context) HttpRequestResponsePtrOutput

func (HttpRequestResponseOutput) Url

The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.

type HttpRequestResponsePtrInput

type HttpRequestResponsePtrInput interface {
	pulumi.Input

	ToHttpRequestResponsePtrOutput() HttpRequestResponsePtrOutput
	ToHttpRequestResponsePtrOutputWithContext(context.Context) HttpRequestResponsePtrOutput
}

HttpRequestResponsePtrInput is an input type that accepts HttpRequestResponseArgs, HttpRequestResponsePtr and HttpRequestResponsePtrOutput values. You can construct a concrete instance of `HttpRequestResponsePtrInput` via:

        HttpRequestResponseArgs{...}

or:

        nil

type HttpRequestResponsePtrOutput

type HttpRequestResponsePtrOutput struct{ *pulumi.OutputState }

func (HttpRequestResponsePtrOutput) Body

HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a task with an incompatible HttpMethod.

func (HttpRequestResponsePtrOutput) Elem

func (HttpRequestResponsePtrOutput) ElementType

func (HttpRequestResponsePtrOutput) Headers

HTTP request headers. This map contains the header field names and values. Headers can be set when the task is created. These headers represent a subset of the headers that will accompany the task's HTTP request. Some HTTP request headers will be ignored or replaced. A partial list of headers that will be ignored or replaced is: * Host: This will be computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * X-Google-*: Google use only. * X-AppEngine-*: Google use only. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when the task is created. For example, `Content-Type` can be set to `"application/octet-stream"` or `"application/json"`. Headers which can have multiple values (according to RFC2616) can be specified using comma-separated values. The size of the headers must be less than 80KB.

func (HttpRequestResponsePtrOutput) HttpMethod

The HTTP method to use for the request. The default is POST.

func (HttpRequestResponsePtrOutput) OauthToken

If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (HttpRequestResponsePtrOutput) OidcToken

If specified, an [OIDC](https://developers.google.com/identity/protocols/OpenIDConnect) token will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (HttpRequestResponsePtrOutput) ToHttpRequestResponsePtrOutput

func (o HttpRequestResponsePtrOutput) ToHttpRequestResponsePtrOutput() HttpRequestResponsePtrOutput

func (HttpRequestResponsePtrOutput) ToHttpRequestResponsePtrOutputWithContext

func (o HttpRequestResponsePtrOutput) ToHttpRequestResponsePtrOutputWithContext(ctx context.Context) HttpRequestResponsePtrOutput

func (HttpRequestResponsePtrOutput) Url

The full url path that the request will be sent to. This string must begin with either "http://" or "https://". Some examples are: `http://acme.com` and `https://acme.com/sales:8080`. Cloud Tasks will encode some characters for safety and compatibility. The maximum allowed URL length is 2083 characters after encoding. The `Location` header response from a redirect response [`300` - `399`] may be followed. The redirect is not counted as a separate attempt.

type LookupQueueArgs added in v0.4.0

type LookupQueueArgs struct {
	Location string  `pulumi:"location"`
	Project  *string `pulumi:"project"`
	QueueId  string  `pulumi:"queueId"`
	ReadMask *string `pulumi:"readMask"`
}

type LookupQueueIamPolicyArgs added in v0.4.0

type LookupQueueIamPolicyArgs struct {
	Location string  `pulumi:"location"`
	Project  *string `pulumi:"project"`
	QueueId  string  `pulumi:"queueId"`
}

type LookupQueueIamPolicyOutputArgs added in v0.8.0

type LookupQueueIamPolicyOutputArgs struct {
	Location pulumi.StringInput    `pulumi:"location"`
	Project  pulumi.StringPtrInput `pulumi:"project"`
	QueueId  pulumi.StringInput    `pulumi:"queueId"`
}

func (LookupQueueIamPolicyOutputArgs) ElementType added in v0.8.0

type LookupQueueIamPolicyResult added in v0.4.0

type LookupQueueIamPolicyResult struct {
	// Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
	Bindings []BindingResponse `pulumi:"bindings"`
	// `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
	Etag string `pulumi:"etag"`
	// Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Version int `pulumi:"version"`
}

func LookupQueueIamPolicy added in v0.4.0

func LookupQueueIamPolicy(ctx *pulumi.Context, args *LookupQueueIamPolicyArgs, opts ...pulumi.InvokeOption) (*LookupQueueIamPolicyResult, error)

Gets the access control policy for a Queue. Returns an empty policy if the resource exists and does not have a policy set. Authorization requires the following [Google IAM](https://cloud.google.com/iam) permission on the specified resource parent: * `cloudtasks.queues.getIamPolicy`

type LookupQueueIamPolicyResultOutput added in v0.8.0

type LookupQueueIamPolicyResultOutput struct{ *pulumi.OutputState }

func LookupQueueIamPolicyOutput added in v0.8.0

func (LookupQueueIamPolicyResultOutput) Bindings added in v0.8.0

Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.

func (LookupQueueIamPolicyResultOutput) ElementType added in v0.8.0

func (LookupQueueIamPolicyResultOutput) Etag added in v0.8.0

`etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.

func (LookupQueueIamPolicyResultOutput) ToLookupQueueIamPolicyResultOutput added in v0.8.0

func (o LookupQueueIamPolicyResultOutput) ToLookupQueueIamPolicyResultOutput() LookupQueueIamPolicyResultOutput

func (LookupQueueIamPolicyResultOutput) ToLookupQueueIamPolicyResultOutputWithContext added in v0.8.0

func (o LookupQueueIamPolicyResultOutput) ToLookupQueueIamPolicyResultOutputWithContext(ctx context.Context) LookupQueueIamPolicyResultOutput

func (LookupQueueIamPolicyResultOutput) Version added in v0.8.0

Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).

type LookupQueueOutputArgs added in v0.8.0

type LookupQueueOutputArgs struct {
	Location pulumi.StringInput    `pulumi:"location"`
	Project  pulumi.StringPtrInput `pulumi:"project"`
	QueueId  pulumi.StringInput    `pulumi:"queueId"`
	ReadMask pulumi.StringPtrInput `pulumi:"readMask"`
}

func (LookupQueueOutputArgs) ElementType added in v0.8.0

func (LookupQueueOutputArgs) ElementType() reflect.Type

type LookupQueueResult added in v0.4.0

type LookupQueueResult struct {
	// AppEngineHttpQueue settings apply only to App Engine tasks in this queue. Http tasks are not affected by this proto.
	AppEngineHttpQueue AppEngineHttpQueueResponse `pulumi:"appEngineHttpQueue"`
	// Caller-specified and required in CreateQueue, after which it becomes output only. The queue name. The queue name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the queue's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters.
	Name string `pulumi:"name"`
	// The last time this queue was purged. All tasks that were created before this time were purged. A queue can be purged using PurgeQueue, the [App Engine Task Queue SDK, or the Cloud Console](https://cloud.google.com/appengine/docs/standard/python/taskqueue/push/deleting-tasks-and-queues#purging_all_tasks_from_a_queue). Purge time will be truncated to the nearest microsecond. Purge time will be unset if the queue has never been purged.
	PurgeTime string `pulumi:"purgeTime"`
	// Rate limits for task dispatches. rate_limits and retry_config are related because they both control task attempts. However they control task attempts in different ways: * rate_limits controls the total rate of dispatches from a queue (i.e. all traffic dispatched from the queue, regardless of whether the dispatch is from a first attempt or a retry). * retry_config controls what happens to particular a task after its first attempt fails. That is, retry_config controls task retries (the second attempt, third attempt, etc). The queue's actual dispatch rate is the result of: * Number of tasks in the queue * User-specified throttling: rate_limits, retry_config, 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.
	RateLimits RateLimitsResponse `pulumi:"rateLimits"`
	// Settings that determine the retry behavior. * For tasks created using Cloud Tasks: the queue-level retry settings apply to all tasks in the queue that were created using Cloud Tasks. Retry settings cannot be set on individual tasks. * For tasks created using the App Engine SDK: the queue-level retry settings apply to all tasks in the queue which do not have retry settings explicitly set on the task and were created by the App Engine SDK. See [App Engine documentation](https://cloud.google.com/appengine/docs/standard/python/taskqueue/push/retrying-tasks).
	RetryConfig RetryConfigResponse `pulumi:"retryConfig"`
	// Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/). If this field is unset, then no logs are written.
	StackdriverLoggingConfig StackdriverLoggingConfigResponse `pulumi:"stackdriverLoggingConfig"`
	// The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
	State string `pulumi:"state"`
	// The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
	Stats QueueStatsResponse `pulumi:"stats"`
	// The maximum amount of time that a task will be retained in this queue. Queues created by Cloud Tasks have a default `task_ttl` of 31 days. After a task has lived for `task_ttl`, the task will be deleted regardless of whether it was dispatched or not. The `task_ttl` for queues created via queue.yaml/xml is equal to the maximum duration because there is a [storage quota](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
	TaskTtl string `pulumi:"taskTtl"`
	// The task tombstone time to live (TTL). After a task is deleted or executed, the task's tombstone is retained for the length of time specified by `tombstone_ttl`. The tombstone is used by task de-duplication; another task with the same name can't be created until the tombstone has expired. For more information about task de-duplication, see the documentation for CreateTaskRequest. Queues created by Cloud Tasks have a default `tombstone_ttl` of 1 hour.
	TombstoneTtl string `pulumi:"tombstoneTtl"`
	// Immutable. The type of a queue (push or pull). `Queue.type` is an immutable property of the queue that is set at the queue creation time. When left unspecified, the default value of `PUSH` is selected.
	Type string `pulumi:"type"`
}

func LookupQueue added in v0.4.0

func LookupQueue(ctx *pulumi.Context, args *LookupQueueArgs, opts ...pulumi.InvokeOption) (*LookupQueueResult, error)

Gets a queue.

type LookupQueueResultOutput added in v0.8.0

type LookupQueueResultOutput struct{ *pulumi.OutputState }

func LookupQueueOutput added in v0.8.0

func LookupQueueOutput(ctx *pulumi.Context, args LookupQueueOutputArgs, opts ...pulumi.InvokeOption) LookupQueueResultOutput

func (LookupQueueResultOutput) AppEngineHttpQueue added in v0.8.0

AppEngineHttpQueue settings apply only to App Engine tasks in this queue. Http tasks are not affected by this proto.

func (LookupQueueResultOutput) ElementType added in v0.8.0

func (LookupQueueResultOutput) ElementType() reflect.Type

func (LookupQueueResultOutput) Name added in v0.8.0

Caller-specified and required in CreateQueue, after which it becomes output only. The queue name. The queue name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the queue's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters.

func (LookupQueueResultOutput) PurgeTime added in v0.8.0

The last time this queue was purged. All tasks that were created before this time were purged. A queue can be purged using PurgeQueue, the [App Engine Task Queue SDK, or the Cloud Console](https://cloud.google.com/appengine/docs/standard/python/taskqueue/push/deleting-tasks-and-queues#purging_all_tasks_from_a_queue). Purge time will be truncated to the nearest microsecond. Purge time will be unset if the queue has never been purged.

func (LookupQueueResultOutput) RateLimits added in v0.8.0

Rate limits for task dispatches. rate_limits and retry_config are related because they both control task attempts. However they control task attempts in different ways: * rate_limits controls the total rate of dispatches from a queue (i.e. all traffic dispatched from the queue, regardless of whether the dispatch is from a first attempt or a retry). * retry_config controls what happens to particular a task after its first attempt fails. That is, retry_config controls task retries (the second attempt, third attempt, etc). The queue's actual dispatch rate is the result of: * Number of tasks in the queue * User-specified throttling: rate_limits, retry_config, 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.

func (LookupQueueResultOutput) RetryConfig added in v0.8.0

Settings that determine the retry behavior. * For tasks created using Cloud Tasks: the queue-level retry settings apply to all tasks in the queue that were created using Cloud Tasks. Retry settings cannot be set on individual tasks. * For tasks created using the App Engine SDK: the queue-level retry settings apply to all tasks in the queue which do not have retry settings explicitly set on the task and were created by the App Engine SDK. See [App Engine documentation](https://cloud.google.com/appengine/docs/standard/python/taskqueue/push/retrying-tasks).

func (LookupQueueResultOutput) StackdriverLoggingConfig added in v0.8.0

Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/). If this field is unset, then no logs are written.

func (LookupQueueResultOutput) State added in v0.8.0

The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading queue.yaml/xml(https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.

func (LookupQueueResultOutput) Stats added in v0.8.0

The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.

func (LookupQueueResultOutput) TaskTtl added in v0.8.0

The maximum amount of time that a task will be retained in this queue. Queues created by Cloud Tasks have a default `task_ttl` of 31 days. After a task has lived for `task_ttl`, the task will be deleted regardless of whether it was dispatched or not. The `task_ttl` for queues created via queue.yaml/xml is equal to the maximum duration because there is a [storage quota](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.

func (LookupQueueResultOutput) ToLookupQueueResultOutput added in v0.8.0

func (o LookupQueueResultOutput) ToLookupQueueResultOutput() LookupQueueResultOutput

func (LookupQueueResultOutput) ToLookupQueueResultOutputWithContext added in v0.8.0

func (o LookupQueueResultOutput) ToLookupQueueResultOutputWithContext(ctx context.Context) LookupQueueResultOutput

func (LookupQueueResultOutput) TombstoneTtl added in v0.8.0

func (o LookupQueueResultOutput) TombstoneTtl() pulumi.StringOutput

The task tombstone time to live (TTL). After a task is deleted or executed, the task's tombstone is retained for the length of time specified by `tombstone_ttl`. The tombstone is used by task de-duplication; another task with the same name can't be created until the tombstone has expired. For more information about task de-duplication, see the documentation for CreateTaskRequest. Queues created by Cloud Tasks have a default `tombstone_ttl` of 1 hour.

func (LookupQueueResultOutput) Type added in v0.8.0

Immutable. The type of a queue (push or pull). `Queue.type` is an immutable property of the queue that is set at the queue creation time. When left unspecified, the default value of `PUSH` is selected.

type LookupTaskArgs added in v0.4.0

type LookupTaskArgs struct {
	Location     string  `pulumi:"location"`
	Project      *string `pulumi:"project"`
	QueueId      string  `pulumi:"queueId"`
	ResponseView *string `pulumi:"responseView"`
	TaskId       string  `pulumi:"taskId"`
}

type LookupTaskOutputArgs added in v0.8.0

type LookupTaskOutputArgs struct {
	Location     pulumi.StringInput    `pulumi:"location"`
	Project      pulumi.StringPtrInput `pulumi:"project"`
	QueueId      pulumi.StringInput    `pulumi:"queueId"`
	ResponseView pulumi.StringPtrInput `pulumi:"responseView"`
	TaskId       pulumi.StringInput    `pulumi:"taskId"`
}

func (LookupTaskOutputArgs) ElementType added in v0.8.0

func (LookupTaskOutputArgs) ElementType() reflect.Type

type LookupTaskResult added in v0.4.0

type LookupTaskResult struct {
	// HTTP request that is sent to the App Engine app handler. An App Engine task is a task that has AppEngineHttpRequest set.
	AppEngineHttpRequest AppEngineHttpRequestResponse `pulumi:"appEngineHttpRequest"`
	// The time that the task was created. `create_time` will be truncated to the nearest second.
	CreateTime string `pulumi:"createTime"`
	// The number of attempts dispatched. This count includes attempts which have been dispatched but haven't received a response.
	DispatchCount int `pulumi:"dispatchCount"`
	// The deadline for requests sent to the worker. If the worker does not respond by this deadline then the request is cancelled and the attempt is marked as a `DEADLINE_EXCEEDED` failure. Cloud Tasks will retry the task according to the RetryConfig. Note that when the request is cancelled, Cloud Tasks will stop listening for the response, but whether the worker stops processing depends on the worker. For example, if the worker is stuck, it may not react to cancelled requests. The default and maximum values depend on the type of request: * For HTTP tasks, the default is 10 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine tasks, 0 indicates that the request has the default deadline. The default deadline depends on the [scaling type](https://cloud.google.com/appengine/docs/standard/go/how-instances-are-managed#instance_scaling) of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. Regardless of the task's `dispatch_deadline`, the app handler will not run for longer than than the service's timeout. We recommend setting the `dispatch_deadline` to at most a few seconds more than the app handler's timeout. For more information see [Timeouts](https://cloud.google.com/tasks/docs/creating-appengine-handlers#timeouts). `dispatch_deadline` will be truncated to the nearest millisecond. The deadline is an approximate deadline.
	DispatchDeadline string `pulumi:"dispatchDeadline"`
	// The status of the task's first attempt. Only dispatch_time will be set. The other Attempt information is not retained by Cloud Tasks.
	FirstAttempt AttemptResponse `pulumi:"firstAttempt"`
	// HTTP request that is sent to the task's target. An HTTP task is a task that has HttpRequest set.
	HttpRequest HttpRequestResponse `pulumi:"httpRequest"`
	// The status of the task's last attempt.
	LastAttempt AttemptResponse `pulumi:"lastAttempt"`
	// Optionally caller-specified in CreateTask. The task name. The task name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the task's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters. * `TASK_ID` can contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
	Name string `pulumi:"name"`
	// Pull Message contained in a task in a PULL queue type. This payload type cannot be explicitly set through Cloud Tasks API. Its purpose, currently is to provide backward compatibility with App Engine Task Queue [pull](https://cloud.google.com/appengine/docs/standard/java/taskqueue/pull/) queues to provide a way to inspect contents of pull tasks through the CloudTasks.GetTask.
	PullMessage PullMessageResponse `pulumi:"pullMessage"`
	// The number of attempts which have received a response.
	ResponseCount int `pulumi:"responseCount"`
	// The time when the task is scheduled to be attempted. For App Engine queues, this is when the task will be attempted or retried. `schedule_time` will be truncated to the nearest microsecond.
	ScheduleTime string `pulumi:"scheduleTime"`
	// The view specifies which subset of the Task has been returned.
	View string `pulumi:"view"`
}

func LookupTask added in v0.4.0

func LookupTask(ctx *pulumi.Context, args *LookupTaskArgs, opts ...pulumi.InvokeOption) (*LookupTaskResult, error)

Gets a task.

type LookupTaskResultOutput added in v0.8.0

type LookupTaskResultOutput struct{ *pulumi.OutputState }

func LookupTaskOutput added in v0.8.0

func LookupTaskOutput(ctx *pulumi.Context, args LookupTaskOutputArgs, opts ...pulumi.InvokeOption) LookupTaskResultOutput

func (LookupTaskResultOutput) AppEngineHttpRequest added in v0.8.0

HTTP request that is sent to the App Engine app handler. An App Engine task is a task that has AppEngineHttpRequest set.

func (LookupTaskResultOutput) CreateTime added in v0.8.0

The time that the task was created. `create_time` will be truncated to the nearest second.

func (LookupTaskResultOutput) DispatchCount added in v0.8.0

func (o LookupTaskResultOutput) DispatchCount() pulumi.IntOutput

The number of attempts dispatched. This count includes attempts which have been dispatched but haven't received a response.

func (LookupTaskResultOutput) DispatchDeadline added in v0.8.0

func (o LookupTaskResultOutput) DispatchDeadline() pulumi.StringOutput

The deadline for requests sent to the worker. If the worker does not respond by this deadline then the request is cancelled and the attempt is marked as a `DEADLINE_EXCEEDED` failure. Cloud Tasks will retry the task according to the RetryConfig. Note that when the request is cancelled, Cloud Tasks will stop listening for the response, but whether the worker stops processing depends on the worker. For example, if the worker is stuck, it may not react to cancelled requests. The default and maximum values depend on the type of request: * For HTTP tasks, the default is 10 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine tasks, 0 indicates that the request has the default deadline. The default deadline depends on the [scaling type](https://cloud.google.com/appengine/docs/standard/go/how-instances-are-managed#instance_scaling) of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. Regardless of the task's `dispatch_deadline`, the app handler will not run for longer than than the service's timeout. We recommend setting the `dispatch_deadline` to at most a few seconds more than the app handler's timeout. For more information see [Timeouts](https://cloud.google.com/tasks/docs/creating-appengine-handlers#timeouts). `dispatch_deadline` will be truncated to the nearest millisecond. The deadline is an approximate deadline.

func (LookupTaskResultOutput) ElementType added in v0.8.0

func (LookupTaskResultOutput) ElementType() reflect.Type

func (LookupTaskResultOutput) FirstAttempt added in v0.8.0

The status of the task's first attempt. Only dispatch_time will be set. The other Attempt information is not retained by Cloud Tasks.

func (LookupTaskResultOutput) HttpRequest added in v0.8.0

HTTP request that is sent to the task's target. An HTTP task is a task that has HttpRequest set.

func (LookupTaskResultOutput) LastAttempt added in v0.8.0

The status of the task's last attempt.

func (LookupTaskResultOutput) Name added in v0.8.0

Optionally caller-specified in CreateTask. The task name. The task name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the task's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters. * `TASK_ID` can contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.

func (LookupTaskResultOutput) PullMessage added in v0.8.0

Pull Message contained in a task in a PULL queue type. This payload type cannot be explicitly set through Cloud Tasks API. Its purpose, currently is to provide backward compatibility with App Engine Task Queue [pull](https://cloud.google.com/appengine/docs/standard/java/taskqueue/pull/) queues to provide a way to inspect contents of pull tasks through the CloudTasks.GetTask.

func (LookupTaskResultOutput) ResponseCount added in v0.8.0

func (o LookupTaskResultOutput) ResponseCount() pulumi.IntOutput

The number of attempts which have received a response.

func (LookupTaskResultOutput) ScheduleTime added in v0.8.0

func (o LookupTaskResultOutput) ScheduleTime() pulumi.StringOutput

The time when the task is scheduled to be attempted. For App Engine queues, this is when the task will be attempted or retried. `schedule_time` will be truncated to the nearest microsecond.

func (LookupTaskResultOutput) ToLookupTaskResultOutput added in v0.8.0

func (o LookupTaskResultOutput) ToLookupTaskResultOutput() LookupTaskResultOutput

func (LookupTaskResultOutput) ToLookupTaskResultOutputWithContext added in v0.8.0

func (o LookupTaskResultOutput) ToLookupTaskResultOutputWithContext(ctx context.Context) LookupTaskResultOutput

func (LookupTaskResultOutput) View added in v0.8.0

The view specifies which subset of the Task has been returned.

type OAuthToken

type OAuthToken struct {
	// OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
	Scope *string `pulumi:"scope"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail *string `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OAuth token](https://developers.google.com/identity/protocols/OAuth2). This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

type OAuthTokenArgs

type OAuthTokenArgs struct {
	// OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
	Scope pulumi.StringPtrInput `pulumi:"scope"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail pulumi.StringPtrInput `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OAuth token](https://developers.google.com/identity/protocols/OAuth2). This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (OAuthTokenArgs) ElementType

func (OAuthTokenArgs) ElementType() reflect.Type

func (OAuthTokenArgs) ToOAuthTokenOutput

func (i OAuthTokenArgs) ToOAuthTokenOutput() OAuthTokenOutput

func (OAuthTokenArgs) ToOAuthTokenOutputWithContext

func (i OAuthTokenArgs) ToOAuthTokenOutputWithContext(ctx context.Context) OAuthTokenOutput

func (OAuthTokenArgs) ToOAuthTokenPtrOutput

func (i OAuthTokenArgs) ToOAuthTokenPtrOutput() OAuthTokenPtrOutput

func (OAuthTokenArgs) ToOAuthTokenPtrOutputWithContext

func (i OAuthTokenArgs) ToOAuthTokenPtrOutputWithContext(ctx context.Context) OAuthTokenPtrOutput

type OAuthTokenInput

type OAuthTokenInput interface {
	pulumi.Input

	ToOAuthTokenOutput() OAuthTokenOutput
	ToOAuthTokenOutputWithContext(context.Context) OAuthTokenOutput
}

OAuthTokenInput is an input type that accepts OAuthTokenArgs and OAuthTokenOutput values. You can construct a concrete instance of `OAuthTokenInput` via:

OAuthTokenArgs{...}

type OAuthTokenOutput

type OAuthTokenOutput struct{ *pulumi.OutputState }

Contains information needed for generating an [OAuth token](https://developers.google.com/identity/protocols/OAuth2). This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (OAuthTokenOutput) ElementType

func (OAuthTokenOutput) ElementType() reflect.Type

func (OAuthTokenOutput) Scope

OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.

func (OAuthTokenOutput) ServiceAccountEmail

func (o OAuthTokenOutput) ServiceAccountEmail() pulumi.StringPtrOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OAuthTokenOutput) ToOAuthTokenOutput

func (o OAuthTokenOutput) ToOAuthTokenOutput() OAuthTokenOutput

func (OAuthTokenOutput) ToOAuthTokenOutputWithContext

func (o OAuthTokenOutput) ToOAuthTokenOutputWithContext(ctx context.Context) OAuthTokenOutput

func (OAuthTokenOutput) ToOAuthTokenPtrOutput

func (o OAuthTokenOutput) ToOAuthTokenPtrOutput() OAuthTokenPtrOutput

func (OAuthTokenOutput) ToOAuthTokenPtrOutputWithContext

func (o OAuthTokenOutput) ToOAuthTokenPtrOutputWithContext(ctx context.Context) OAuthTokenPtrOutput

type OAuthTokenPtrInput

type OAuthTokenPtrInput interface {
	pulumi.Input

	ToOAuthTokenPtrOutput() OAuthTokenPtrOutput
	ToOAuthTokenPtrOutputWithContext(context.Context) OAuthTokenPtrOutput
}

OAuthTokenPtrInput is an input type that accepts OAuthTokenArgs, OAuthTokenPtr and OAuthTokenPtrOutput values. You can construct a concrete instance of `OAuthTokenPtrInput` via:

        OAuthTokenArgs{...}

or:

        nil

func OAuthTokenPtr

func OAuthTokenPtr(v *OAuthTokenArgs) OAuthTokenPtrInput

type OAuthTokenPtrOutput

type OAuthTokenPtrOutput struct{ *pulumi.OutputState }

func (OAuthTokenPtrOutput) Elem

func (OAuthTokenPtrOutput) ElementType

func (OAuthTokenPtrOutput) ElementType() reflect.Type

func (OAuthTokenPtrOutput) Scope

OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.

func (OAuthTokenPtrOutput) ServiceAccountEmail

func (o OAuthTokenPtrOutput) ServiceAccountEmail() pulumi.StringPtrOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OAuthTokenPtrOutput) ToOAuthTokenPtrOutput

func (o OAuthTokenPtrOutput) ToOAuthTokenPtrOutput() OAuthTokenPtrOutput

func (OAuthTokenPtrOutput) ToOAuthTokenPtrOutputWithContext

func (o OAuthTokenPtrOutput) ToOAuthTokenPtrOutputWithContext(ctx context.Context) OAuthTokenPtrOutput

type OAuthTokenResponse

type OAuthTokenResponse struct {
	// OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
	Scope string `pulumi:"scope"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail string `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OAuth token](https://developers.google.com/identity/protocols/OAuth2). This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

type OAuthTokenResponseArgs

type OAuthTokenResponseArgs struct {
	// OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.
	Scope pulumi.StringInput `pulumi:"scope"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail pulumi.StringInput `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OAuth token](https://developers.google.com/identity/protocols/OAuth2). This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (OAuthTokenResponseArgs) ElementType

func (OAuthTokenResponseArgs) ElementType() reflect.Type

func (OAuthTokenResponseArgs) ToOAuthTokenResponseOutput

func (i OAuthTokenResponseArgs) ToOAuthTokenResponseOutput() OAuthTokenResponseOutput

func (OAuthTokenResponseArgs) ToOAuthTokenResponseOutputWithContext

func (i OAuthTokenResponseArgs) ToOAuthTokenResponseOutputWithContext(ctx context.Context) OAuthTokenResponseOutput

func (OAuthTokenResponseArgs) ToOAuthTokenResponsePtrOutput

func (i OAuthTokenResponseArgs) ToOAuthTokenResponsePtrOutput() OAuthTokenResponsePtrOutput

func (OAuthTokenResponseArgs) ToOAuthTokenResponsePtrOutputWithContext

func (i OAuthTokenResponseArgs) ToOAuthTokenResponsePtrOutputWithContext(ctx context.Context) OAuthTokenResponsePtrOutput

type OAuthTokenResponseInput

type OAuthTokenResponseInput interface {
	pulumi.Input

	ToOAuthTokenResponseOutput() OAuthTokenResponseOutput
	ToOAuthTokenResponseOutputWithContext(context.Context) OAuthTokenResponseOutput
}

OAuthTokenResponseInput is an input type that accepts OAuthTokenResponseArgs and OAuthTokenResponseOutput values. You can construct a concrete instance of `OAuthTokenResponseInput` via:

OAuthTokenResponseArgs{...}

type OAuthTokenResponseOutput

type OAuthTokenResponseOutput struct{ *pulumi.OutputState }

Contains information needed for generating an [OAuth token](https://developers.google.com/identity/protocols/OAuth2). This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (OAuthTokenResponseOutput) ElementType

func (OAuthTokenResponseOutput) ElementType() reflect.Type

func (OAuthTokenResponseOutput) Scope

OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.

func (OAuthTokenResponseOutput) ServiceAccountEmail

func (o OAuthTokenResponseOutput) ServiceAccountEmail() pulumi.StringOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OAuthTokenResponseOutput) ToOAuthTokenResponseOutput

func (o OAuthTokenResponseOutput) ToOAuthTokenResponseOutput() OAuthTokenResponseOutput

func (OAuthTokenResponseOutput) ToOAuthTokenResponseOutputWithContext

func (o OAuthTokenResponseOutput) ToOAuthTokenResponseOutputWithContext(ctx context.Context) OAuthTokenResponseOutput

func (OAuthTokenResponseOutput) ToOAuthTokenResponsePtrOutput

func (o OAuthTokenResponseOutput) ToOAuthTokenResponsePtrOutput() OAuthTokenResponsePtrOutput

func (OAuthTokenResponseOutput) ToOAuthTokenResponsePtrOutputWithContext

func (o OAuthTokenResponseOutput) ToOAuthTokenResponsePtrOutputWithContext(ctx context.Context) OAuthTokenResponsePtrOutput

type OAuthTokenResponsePtrInput

type OAuthTokenResponsePtrInput interface {
	pulumi.Input

	ToOAuthTokenResponsePtrOutput() OAuthTokenResponsePtrOutput
	ToOAuthTokenResponsePtrOutputWithContext(context.Context) OAuthTokenResponsePtrOutput
}

OAuthTokenResponsePtrInput is an input type that accepts OAuthTokenResponseArgs, OAuthTokenResponsePtr and OAuthTokenResponsePtrOutput values. You can construct a concrete instance of `OAuthTokenResponsePtrInput` via:

        OAuthTokenResponseArgs{...}

or:

        nil

type OAuthTokenResponsePtrOutput

type OAuthTokenResponsePtrOutput struct{ *pulumi.OutputState }

func (OAuthTokenResponsePtrOutput) Elem

func (OAuthTokenResponsePtrOutput) ElementType

func (OAuthTokenResponsePtrOutput) Scope

OAuth scope to be used for generating OAuth access token. If not specified, "https://www.googleapis.com/auth/cloud-platform" will be used.

func (OAuthTokenResponsePtrOutput) ServiceAccountEmail

func (o OAuthTokenResponsePtrOutput) ServiceAccountEmail() pulumi.StringPtrOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OAuth token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OAuthTokenResponsePtrOutput) ToOAuthTokenResponsePtrOutput

func (o OAuthTokenResponsePtrOutput) ToOAuthTokenResponsePtrOutput() OAuthTokenResponsePtrOutput

func (OAuthTokenResponsePtrOutput) ToOAuthTokenResponsePtrOutputWithContext

func (o OAuthTokenResponsePtrOutput) ToOAuthTokenResponsePtrOutputWithContext(ctx context.Context) OAuthTokenResponsePtrOutput

type OidcToken

type OidcToken struct {
	// Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
	Audience *string `pulumi:"audience"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail *string `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OpenID Connect token](https://developers.google.com/identity/protocols/OpenIDConnect). This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

type OidcTokenArgs

type OidcTokenArgs struct {
	// Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
	Audience pulumi.StringPtrInput `pulumi:"audience"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail pulumi.StringPtrInput `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OpenID Connect token](https://developers.google.com/identity/protocols/OpenIDConnect). This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (OidcTokenArgs) ElementType

func (OidcTokenArgs) ElementType() reflect.Type

func (OidcTokenArgs) ToOidcTokenOutput

func (i OidcTokenArgs) ToOidcTokenOutput() OidcTokenOutput

func (OidcTokenArgs) ToOidcTokenOutputWithContext

func (i OidcTokenArgs) ToOidcTokenOutputWithContext(ctx context.Context) OidcTokenOutput

func (OidcTokenArgs) ToOidcTokenPtrOutput

func (i OidcTokenArgs) ToOidcTokenPtrOutput() OidcTokenPtrOutput

func (OidcTokenArgs) ToOidcTokenPtrOutputWithContext

func (i OidcTokenArgs) ToOidcTokenPtrOutputWithContext(ctx context.Context) OidcTokenPtrOutput

type OidcTokenInput

type OidcTokenInput interface {
	pulumi.Input

	ToOidcTokenOutput() OidcTokenOutput
	ToOidcTokenOutputWithContext(context.Context) OidcTokenOutput
}

OidcTokenInput is an input type that accepts OidcTokenArgs and OidcTokenOutput values. You can construct a concrete instance of `OidcTokenInput` via:

OidcTokenArgs{...}

type OidcTokenOutput

type OidcTokenOutput struct{ *pulumi.OutputState }

Contains information needed for generating an [OpenID Connect token](https://developers.google.com/identity/protocols/OpenIDConnect). This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (OidcTokenOutput) Audience

func (o OidcTokenOutput) Audience() pulumi.StringPtrOutput

Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.

func (OidcTokenOutput) ElementType

func (OidcTokenOutput) ElementType() reflect.Type

func (OidcTokenOutput) ServiceAccountEmail

func (o OidcTokenOutput) ServiceAccountEmail() pulumi.StringPtrOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OidcTokenOutput) ToOidcTokenOutput

func (o OidcTokenOutput) ToOidcTokenOutput() OidcTokenOutput

func (OidcTokenOutput) ToOidcTokenOutputWithContext

func (o OidcTokenOutput) ToOidcTokenOutputWithContext(ctx context.Context) OidcTokenOutput

func (OidcTokenOutput) ToOidcTokenPtrOutput

func (o OidcTokenOutput) ToOidcTokenPtrOutput() OidcTokenPtrOutput

func (OidcTokenOutput) ToOidcTokenPtrOutputWithContext

func (o OidcTokenOutput) ToOidcTokenPtrOutputWithContext(ctx context.Context) OidcTokenPtrOutput

type OidcTokenPtrInput

type OidcTokenPtrInput interface {
	pulumi.Input

	ToOidcTokenPtrOutput() OidcTokenPtrOutput
	ToOidcTokenPtrOutputWithContext(context.Context) OidcTokenPtrOutput
}

OidcTokenPtrInput is an input type that accepts OidcTokenArgs, OidcTokenPtr and OidcTokenPtrOutput values. You can construct a concrete instance of `OidcTokenPtrInput` via:

        OidcTokenArgs{...}

or:

        nil

func OidcTokenPtr

func OidcTokenPtr(v *OidcTokenArgs) OidcTokenPtrInput

type OidcTokenPtrOutput

type OidcTokenPtrOutput struct{ *pulumi.OutputState }

func (OidcTokenPtrOutput) Audience

Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.

func (OidcTokenPtrOutput) Elem

func (OidcTokenPtrOutput) ElementType

func (OidcTokenPtrOutput) ElementType() reflect.Type

func (OidcTokenPtrOutput) ServiceAccountEmail

func (o OidcTokenPtrOutput) ServiceAccountEmail() pulumi.StringPtrOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OidcTokenPtrOutput) ToOidcTokenPtrOutput

func (o OidcTokenPtrOutput) ToOidcTokenPtrOutput() OidcTokenPtrOutput

func (OidcTokenPtrOutput) ToOidcTokenPtrOutputWithContext

func (o OidcTokenPtrOutput) ToOidcTokenPtrOutputWithContext(ctx context.Context) OidcTokenPtrOutput

type OidcTokenResponse

type OidcTokenResponse struct {
	// Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
	Audience string `pulumi:"audience"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail string `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OpenID Connect token](https://developers.google.com/identity/protocols/OpenIDConnect). This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

type OidcTokenResponseArgs

type OidcTokenResponseArgs struct {
	// Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.
	Audience pulumi.StringInput `pulumi:"audience"`
	// [Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.
	ServiceAccountEmail pulumi.StringInput `pulumi:"serviceAccountEmail"`
}

Contains information needed for generating an [OpenID Connect token](https://developers.google.com/identity/protocols/OpenIDConnect). This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (OidcTokenResponseArgs) ElementType

func (OidcTokenResponseArgs) ElementType() reflect.Type

func (OidcTokenResponseArgs) ToOidcTokenResponseOutput

func (i OidcTokenResponseArgs) ToOidcTokenResponseOutput() OidcTokenResponseOutput

func (OidcTokenResponseArgs) ToOidcTokenResponseOutputWithContext

func (i OidcTokenResponseArgs) ToOidcTokenResponseOutputWithContext(ctx context.Context) OidcTokenResponseOutput

func (OidcTokenResponseArgs) ToOidcTokenResponsePtrOutput

func (i OidcTokenResponseArgs) ToOidcTokenResponsePtrOutput() OidcTokenResponsePtrOutput

func (OidcTokenResponseArgs) ToOidcTokenResponsePtrOutputWithContext

func (i OidcTokenResponseArgs) ToOidcTokenResponsePtrOutputWithContext(ctx context.Context) OidcTokenResponsePtrOutput

type OidcTokenResponseInput

type OidcTokenResponseInput interface {
	pulumi.Input

	ToOidcTokenResponseOutput() OidcTokenResponseOutput
	ToOidcTokenResponseOutputWithContext(context.Context) OidcTokenResponseOutput
}

OidcTokenResponseInput is an input type that accepts OidcTokenResponseArgs and OidcTokenResponseOutput values. You can construct a concrete instance of `OidcTokenResponseInput` via:

OidcTokenResponseArgs{...}

type OidcTokenResponseOutput

type OidcTokenResponseOutput struct{ *pulumi.OutputState }

Contains information needed for generating an [OpenID Connect token](https://developers.google.com/identity/protocols/OpenIDConnect). This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself.

func (OidcTokenResponseOutput) Audience

Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.

func (OidcTokenResponseOutput) ElementType

func (OidcTokenResponseOutput) ElementType() reflect.Type

func (OidcTokenResponseOutput) ServiceAccountEmail

func (o OidcTokenResponseOutput) ServiceAccountEmail() pulumi.StringOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OidcTokenResponseOutput) ToOidcTokenResponseOutput

func (o OidcTokenResponseOutput) ToOidcTokenResponseOutput() OidcTokenResponseOutput

func (OidcTokenResponseOutput) ToOidcTokenResponseOutputWithContext

func (o OidcTokenResponseOutput) ToOidcTokenResponseOutputWithContext(ctx context.Context) OidcTokenResponseOutput

func (OidcTokenResponseOutput) ToOidcTokenResponsePtrOutput

func (o OidcTokenResponseOutput) ToOidcTokenResponsePtrOutput() OidcTokenResponsePtrOutput

func (OidcTokenResponseOutput) ToOidcTokenResponsePtrOutputWithContext

func (o OidcTokenResponseOutput) ToOidcTokenResponsePtrOutputWithContext(ctx context.Context) OidcTokenResponsePtrOutput

type OidcTokenResponsePtrInput

type OidcTokenResponsePtrInput interface {
	pulumi.Input

	ToOidcTokenResponsePtrOutput() OidcTokenResponsePtrOutput
	ToOidcTokenResponsePtrOutputWithContext(context.Context) OidcTokenResponsePtrOutput
}

OidcTokenResponsePtrInput is an input type that accepts OidcTokenResponseArgs, OidcTokenResponsePtr and OidcTokenResponsePtrOutput values. You can construct a concrete instance of `OidcTokenResponsePtrInput` via:

        OidcTokenResponseArgs{...}

or:

        nil

type OidcTokenResponsePtrOutput

type OidcTokenResponsePtrOutput struct{ *pulumi.OutputState }

func (OidcTokenResponsePtrOutput) Audience

Audience to be used when generating OIDC token. If not specified, the URI specified in target will be used.

func (OidcTokenResponsePtrOutput) Elem

func (OidcTokenResponsePtrOutput) ElementType

func (OidcTokenResponsePtrOutput) ElementType() reflect.Type

func (OidcTokenResponsePtrOutput) ServiceAccountEmail

func (o OidcTokenResponsePtrOutput) ServiceAccountEmail() pulumi.StringPtrOutput

[Service account email](https://cloud.google.com/iam/docs/service-accounts) to be used for generating OIDC token. The service account must be within the same project as the queue. The caller must have iam.serviceAccounts.actAs permission for the service account.

func (OidcTokenResponsePtrOutput) ToOidcTokenResponsePtrOutput

func (o OidcTokenResponsePtrOutput) ToOidcTokenResponsePtrOutput() OidcTokenResponsePtrOutput

func (OidcTokenResponsePtrOutput) ToOidcTokenResponsePtrOutputWithContext

func (o OidcTokenResponsePtrOutput) ToOidcTokenResponsePtrOutputWithContext(ctx context.Context) OidcTokenResponsePtrOutput

type PullMessage

type PullMessage struct {
	// A data payload consumed by the worker to execute the task.
	Payload *string `pulumi:"payload"`
	// The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or [bytes](https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.
	Tag *string `pulumi:"tag"`
}

Pull Message. This proto can only be used for tasks in a queue which has PULL type. It currently exists for backwards compatibility with the App Engine Task Queue SDK. This message type maybe returned with methods list and get, when the response view is FULL.

type PullMessageArgs

type PullMessageArgs struct {
	// A data payload consumed by the worker to execute the task.
	Payload pulumi.StringPtrInput `pulumi:"payload"`
	// The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or [bytes](https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.
	Tag pulumi.StringPtrInput `pulumi:"tag"`
}

Pull Message. This proto can only be used for tasks in a queue which has PULL type. It currently exists for backwards compatibility with the App Engine Task Queue SDK. This message type maybe returned with methods list and get, when the response view is FULL.

func (PullMessageArgs) ElementType

func (PullMessageArgs) ElementType() reflect.Type

func (PullMessageArgs) ToPullMessageOutput

func (i PullMessageArgs) ToPullMessageOutput() PullMessageOutput

func (PullMessageArgs) ToPullMessageOutputWithContext

func (i PullMessageArgs) ToPullMessageOutputWithContext(ctx context.Context) PullMessageOutput

func (PullMessageArgs) ToPullMessagePtrOutput

func (i PullMessageArgs) ToPullMessagePtrOutput() PullMessagePtrOutput

func (PullMessageArgs) ToPullMessagePtrOutputWithContext

func (i PullMessageArgs) ToPullMessagePtrOutputWithContext(ctx context.Context) PullMessagePtrOutput

type PullMessageInput

type PullMessageInput interface {
	pulumi.Input

	ToPullMessageOutput() PullMessageOutput
	ToPullMessageOutputWithContext(context.Context) PullMessageOutput
}

PullMessageInput is an input type that accepts PullMessageArgs and PullMessageOutput values. You can construct a concrete instance of `PullMessageInput` via:

PullMessageArgs{...}

type PullMessageOutput

type PullMessageOutput struct{ *pulumi.OutputState }

Pull Message. This proto can only be used for tasks in a queue which has PULL type. It currently exists for backwards compatibility with the App Engine Task Queue SDK. This message type maybe returned with methods list and get, when the response view is FULL.

func (PullMessageOutput) ElementType

func (PullMessageOutput) ElementType() reflect.Type

func (PullMessageOutput) Payload

A data payload consumed by the worker to execute the task.

func (PullMessageOutput) Tag

The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or bytes(https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.

func (PullMessageOutput) ToPullMessageOutput

func (o PullMessageOutput) ToPullMessageOutput() PullMessageOutput

func (PullMessageOutput) ToPullMessageOutputWithContext

func (o PullMessageOutput) ToPullMessageOutputWithContext(ctx context.Context) PullMessageOutput

func (PullMessageOutput) ToPullMessagePtrOutput

func (o PullMessageOutput) ToPullMessagePtrOutput() PullMessagePtrOutput

func (PullMessageOutput) ToPullMessagePtrOutputWithContext

func (o PullMessageOutput) ToPullMessagePtrOutputWithContext(ctx context.Context) PullMessagePtrOutput

type PullMessagePtrInput

type PullMessagePtrInput interface {
	pulumi.Input

	ToPullMessagePtrOutput() PullMessagePtrOutput
	ToPullMessagePtrOutputWithContext(context.Context) PullMessagePtrOutput
}

PullMessagePtrInput is an input type that accepts PullMessageArgs, PullMessagePtr and PullMessagePtrOutput values. You can construct a concrete instance of `PullMessagePtrInput` via:

        PullMessageArgs{...}

or:

        nil

func PullMessagePtr

func PullMessagePtr(v *PullMessageArgs) PullMessagePtrInput

type PullMessagePtrOutput

type PullMessagePtrOutput struct{ *pulumi.OutputState }

func (PullMessagePtrOutput) Elem

func (PullMessagePtrOutput) ElementType

func (PullMessagePtrOutput) ElementType() reflect.Type

func (PullMessagePtrOutput) Payload

A data payload consumed by the worker to execute the task.

func (PullMessagePtrOutput) Tag

The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or bytes(https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.

func (PullMessagePtrOutput) ToPullMessagePtrOutput

func (o PullMessagePtrOutput) ToPullMessagePtrOutput() PullMessagePtrOutput

func (PullMessagePtrOutput) ToPullMessagePtrOutputWithContext

func (o PullMessagePtrOutput) ToPullMessagePtrOutputWithContext(ctx context.Context) PullMessagePtrOutput

type PullMessageResponse

type PullMessageResponse struct {
	// A data payload consumed by the worker to execute the task.
	Payload string `pulumi:"payload"`
	// The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or [bytes](https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.
	Tag string `pulumi:"tag"`
}

Pull Message. This proto can only be used for tasks in a queue which has PULL type. It currently exists for backwards compatibility with the App Engine Task Queue SDK. This message type maybe returned with methods list and get, when the response view is FULL.

type PullMessageResponseArgs

type PullMessageResponseArgs struct {
	// A data payload consumed by the worker to execute the task.
	Payload pulumi.StringInput `pulumi:"payload"`
	// The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or [bytes](https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.
	Tag pulumi.StringInput `pulumi:"tag"`
}

Pull Message. This proto can only be used for tasks in a queue which has PULL type. It currently exists for backwards compatibility with the App Engine Task Queue SDK. This message type maybe returned with methods list and get, when the response view is FULL.

func (PullMessageResponseArgs) ElementType

func (PullMessageResponseArgs) ElementType() reflect.Type

func (PullMessageResponseArgs) ToPullMessageResponseOutput

func (i PullMessageResponseArgs) ToPullMessageResponseOutput() PullMessageResponseOutput

func (PullMessageResponseArgs) ToPullMessageResponseOutputWithContext

func (i PullMessageResponseArgs) ToPullMessageResponseOutputWithContext(ctx context.Context) PullMessageResponseOutput

func (PullMessageResponseArgs) ToPullMessageResponsePtrOutput

func (i PullMessageResponseArgs) ToPullMessageResponsePtrOutput() PullMessageResponsePtrOutput

func (PullMessageResponseArgs) ToPullMessageResponsePtrOutputWithContext

func (i PullMessageResponseArgs) ToPullMessageResponsePtrOutputWithContext(ctx context.Context) PullMessageResponsePtrOutput

type PullMessageResponseInput

type PullMessageResponseInput interface {
	pulumi.Input

	ToPullMessageResponseOutput() PullMessageResponseOutput
	ToPullMessageResponseOutputWithContext(context.Context) PullMessageResponseOutput
}

PullMessageResponseInput is an input type that accepts PullMessageResponseArgs and PullMessageResponseOutput values. You can construct a concrete instance of `PullMessageResponseInput` via:

PullMessageResponseArgs{...}

type PullMessageResponseOutput

type PullMessageResponseOutput struct{ *pulumi.OutputState }

Pull Message. This proto can only be used for tasks in a queue which has PULL type. It currently exists for backwards compatibility with the App Engine Task Queue SDK. This message type maybe returned with methods list and get, when the response view is FULL.

func (PullMessageResponseOutput) ElementType

func (PullMessageResponseOutput) ElementType() reflect.Type

func (PullMessageResponseOutput) Payload

A data payload consumed by the worker to execute the task.

func (PullMessageResponseOutput) Tag

The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or bytes(https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.

func (PullMessageResponseOutput) ToPullMessageResponseOutput

func (o PullMessageResponseOutput) ToPullMessageResponseOutput() PullMessageResponseOutput

func (PullMessageResponseOutput) ToPullMessageResponseOutputWithContext

func (o PullMessageResponseOutput) ToPullMessageResponseOutputWithContext(ctx context.Context) PullMessageResponseOutput

func (PullMessageResponseOutput) ToPullMessageResponsePtrOutput

func (o PullMessageResponseOutput) ToPullMessageResponsePtrOutput() PullMessageResponsePtrOutput

func (PullMessageResponseOutput) ToPullMessageResponsePtrOutputWithContext

func (o PullMessageResponseOutput) ToPullMessageResponsePtrOutputWithContext(ctx context.Context) PullMessageResponsePtrOutput

type PullMessageResponsePtrInput

type PullMessageResponsePtrInput interface {
	pulumi.Input

	ToPullMessageResponsePtrOutput() PullMessageResponsePtrOutput
	ToPullMessageResponsePtrOutputWithContext(context.Context) PullMessageResponsePtrOutput
}

PullMessageResponsePtrInput is an input type that accepts PullMessageResponseArgs, PullMessageResponsePtr and PullMessageResponsePtrOutput values. You can construct a concrete instance of `PullMessageResponsePtrInput` via:

        PullMessageResponseArgs{...}

or:

        nil

type PullMessageResponsePtrOutput

type PullMessageResponsePtrOutput struct{ *pulumi.OutputState }

func (PullMessageResponsePtrOutput) Elem

func (PullMessageResponsePtrOutput) ElementType

func (PullMessageResponsePtrOutput) Payload

A data payload consumed by the worker to execute the task.

func (PullMessageResponsePtrOutput) Tag

The tasks's tag. The tag is less than 500 characters. SDK compatibility: Although the SDK allows tags to be either string or bytes(https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), only UTF-8 encoded tags can be used in Cloud Tasks. If a tag isn't UTF-8 encoded, the tag will be empty when the task is returned by Cloud Tasks.

func (PullMessageResponsePtrOutput) ToPullMessageResponsePtrOutput

func (o PullMessageResponsePtrOutput) ToPullMessageResponsePtrOutput() PullMessageResponsePtrOutput

func (PullMessageResponsePtrOutput) ToPullMessageResponsePtrOutputWithContext

func (o PullMessageResponsePtrOutput) ToPullMessageResponsePtrOutputWithContext(ctx context.Context) PullMessageResponsePtrOutput

type Queue

type Queue struct {
	pulumi.CustomResourceState

	// AppEngineHttpQueue settings apply only to App Engine tasks in this queue. Http tasks are not affected by this proto.
	AppEngineHttpQueue AppEngineHttpQueueResponseOutput `pulumi:"appEngineHttpQueue"`
	// Caller-specified and required in CreateQueue, after which it becomes output only. The queue name. The queue name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the queue's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters.
	Name pulumi.StringOutput `pulumi:"name"`
	// The last time this queue was purged. All tasks that were created before this time were purged. A queue can be purged using PurgeQueue, the [App Engine Task Queue SDK, or the Cloud Console](https://cloud.google.com/appengine/docs/standard/python/taskqueue/push/deleting-tasks-and-queues#purging_all_tasks_from_a_queue). Purge time will be truncated to the nearest microsecond. Purge time will be unset if the queue has never been purged.
	PurgeTime pulumi.StringOutput `pulumi:"purgeTime"`
	// Rate limits for task dispatches. rate_limits and retry_config are related because they both control task attempts. However they control task attempts in different ways: * rate_limits controls the total rate of dispatches from a queue (i.e. all traffic dispatched from the queue, regardless of whether the dispatch is from a first attempt or a retry). * retry_config controls what happens to particular a task after its first attempt fails. That is, retry_config controls task retries (the second attempt, third attempt, etc). The queue's actual dispatch rate is the result of: * Number of tasks in the queue * User-specified throttling: rate_limits, retry_config, 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.
	RateLimits RateLimitsResponseOutput `pulumi:"rateLimits"`
	// Settings that determine the retry behavior. * For tasks created using Cloud Tasks: the queue-level retry settings apply to all tasks in the queue that were created using Cloud Tasks. Retry settings cannot be set on individual tasks. * For tasks created using the App Engine SDK: the queue-level retry settings apply to all tasks in the queue which do not have retry settings explicitly set on the task and were created by the App Engine SDK. See [App Engine documentation](https://cloud.google.com/appengine/docs/standard/python/taskqueue/push/retrying-tasks).
	RetryConfig RetryConfigResponseOutput `pulumi:"retryConfig"`
	// Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/). If this field is unset, then no logs are written.
	StackdriverLoggingConfig StackdriverLoggingConfigResponseOutput `pulumi:"stackdriverLoggingConfig"`
	// The state of the queue. `state` can only be changed by called PauseQueue, ResumeQueue, or uploading [queue.yaml/xml](https://cloud.google.com/appengine/docs/python/config/queueref). UpdateQueue cannot be used to change `state`.
	State pulumi.StringOutput `pulumi:"state"`
	// The realtime, informational statistics for a queue. In order to receive the statistics the caller should include this field in the FieldMask.
	Stats QueueStatsResponseOutput `pulumi:"stats"`
	// The maximum amount of time that a task will be retained in this queue. Queues created by Cloud Tasks have a default `task_ttl` of 31 days. After a task has lived for `task_ttl`, the task will be deleted regardless of whether it was dispatched or not. The `task_ttl` for queues created via queue.yaml/xml is equal to the maximum duration because there is a [storage quota](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
	TaskTtl pulumi.StringOutput `pulumi:"taskTtl"`
	// The task tombstone time to live (TTL). After a task is deleted or executed, the task's tombstone is retained for the length of time specified by `tombstone_ttl`. The tombstone is used by task de-duplication; another task with the same name can't be created until the tombstone has expired. For more information about task de-duplication, see the documentation for CreateTaskRequest. Queues created by Cloud Tasks have a default `tombstone_ttl` of 1 hour.
	TombstoneTtl pulumi.StringOutput `pulumi:"tombstoneTtl"`
	// Immutable. The type of a queue (push or pull). `Queue.type` is an immutable property of the queue that is set at the queue creation time. When left unspecified, the default value of `PUSH` is selected.
	Type pulumi.StringOutput `pulumi:"type"`
}

Creates a queue. Queues created with this method allow tasks to live for a maximum of 31 days. After a task is 31 days old, the task will be deleted regardless of whether it was dispatched or not. WARNING: Using this method may have unintended side effects if you are using an App Engine `queue.yaml` or `queue.xml` file to manage your queues. Read [Overview of Queue Management and queue.yaml](https://cloud.google.com/tasks/docs/queue-yaml) before using this method.

func GetQueue

func GetQueue(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *QueueState, opts ...pulumi.ResourceOption) (*Queue, error)

GetQueue gets an existing Queue resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewQueue

func NewQueue(ctx *pulumi.Context,
	name string, args *QueueArgs, opts ...pulumi.ResourceOption) (*Queue, error)

NewQueue registers a new resource with the given unique name, arguments, and options.

func (*Queue) ElementType

func (*Queue) ElementType() reflect.Type

func (*Queue) ToQueueOutput

func (i *Queue) ToQueueOutput() QueueOutput

func (*Queue) ToQueueOutputWithContext

func (i *Queue) ToQueueOutputWithContext(ctx context.Context) QueueOutput

type QueueArgs

type QueueArgs struct {
	// AppEngineHttpQueue settings apply only to App Engine tasks in this queue. Http tasks are not affected by this proto.
	AppEngineHttpQueue AppEngineHttpQueuePtrInput
	Location           pulumi.StringPtrInput
	// Caller-specified and required in CreateQueue, after which it becomes output only. The queue name. The queue name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the queue's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters.
	Name    pulumi.StringPtrInput
	Project pulumi.StringPtrInput
	// Rate limits for task dispatches. rate_limits and retry_config are related because they both control task attempts. However they control task attempts in different ways: * rate_limits controls the total rate of dispatches from a queue (i.e. all traffic dispatched from the queue, regardless of whether the dispatch is from a first attempt or a retry). * retry_config controls what happens to particular a task after its first attempt fails. That is, retry_config controls task retries (the second attempt, third attempt, etc). The queue's actual dispatch rate is the result of: * Number of tasks in the queue * User-specified throttling: rate_limits, retry_config, 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.
	RateLimits RateLimitsPtrInput
	// Settings that determine the retry behavior. * For tasks created using Cloud Tasks: the queue-level retry settings apply to all tasks in the queue that were created using Cloud Tasks. Retry settings cannot be set on individual tasks. * For tasks created using the App Engine SDK: the queue-level retry settings apply to all tasks in the queue which do not have retry settings explicitly set on the task and were created by the App Engine SDK. See [App Engine documentation](https://cloud.google.com/appengine/docs/standard/python/taskqueue/push/retrying-tasks).
	RetryConfig RetryConfigPtrInput
	// Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/). If this field is unset, then no logs are written.
	StackdriverLoggingConfig StackdriverLoggingConfigPtrInput
	// The maximum amount of time that a task will be retained in this queue. Queues created by Cloud Tasks have a default `task_ttl` of 31 days. After a task has lived for `task_ttl`, the task will be deleted regardless of whether it was dispatched or not. The `task_ttl` for queues created via queue.yaml/xml is equal to the maximum duration because there is a [storage quota](https://cloud.google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum valid duration, see the documentation for Duration.
	TaskTtl pulumi.StringPtrInput
	// The task tombstone time to live (TTL). After a task is deleted or executed, the task's tombstone is retained for the length of time specified by `tombstone_ttl`. The tombstone is used by task de-duplication; another task with the same name can't be created until the tombstone has expired. For more information about task de-duplication, see the documentation for CreateTaskRequest. Queues created by Cloud Tasks have a default `tombstone_ttl` of 1 hour.
	TombstoneTtl pulumi.StringPtrInput
	// Immutable. The type of a queue (push or pull). `Queue.type` is an immutable property of the queue that is set at the queue creation time. When left unspecified, the default value of `PUSH` is selected.
	Type QueueTypePtrInput
}

The set of arguments for constructing a Queue resource.

func (QueueArgs) ElementType

func (QueueArgs) ElementType() reflect.Type

type QueueIamPolicy

type QueueIamPolicy struct {
	pulumi.CustomResourceState

	// Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
	Bindings BindingResponseArrayOutput `pulumi:"bindings"`
	// `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
	Etag pulumi.StringOutput `pulumi:"etag"`
	// Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Version pulumi.IntOutput `pulumi:"version"`
}

Sets the access control policy for a Queue. Replaces any existing policy. Note: The Cloud Console does not check queue-level IAM permissions yet. Project-level permissions are required to use the Cloud Console. Authorization requires the following [Google IAM](https://cloud.google.com/iam) permission on the specified resource parent: * `cloudtasks.queues.setIamPolicy` Note - this resource's API doesn't support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

func GetQueueIamPolicy

func GetQueueIamPolicy(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *QueueIamPolicyState, opts ...pulumi.ResourceOption) (*QueueIamPolicy, error)

GetQueueIamPolicy gets an existing QueueIamPolicy resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewQueueIamPolicy

func NewQueueIamPolicy(ctx *pulumi.Context,
	name string, args *QueueIamPolicyArgs, opts ...pulumi.ResourceOption) (*QueueIamPolicy, error)

NewQueueIamPolicy registers a new resource with the given unique name, arguments, and options.

func (*QueueIamPolicy) ElementType

func (*QueueIamPolicy) ElementType() reflect.Type

func (*QueueIamPolicy) ToQueueIamPolicyOutput

func (i *QueueIamPolicy) ToQueueIamPolicyOutput() QueueIamPolicyOutput

func (*QueueIamPolicy) ToQueueIamPolicyOutputWithContext

func (i *QueueIamPolicy) ToQueueIamPolicyOutputWithContext(ctx context.Context) QueueIamPolicyOutput

type QueueIamPolicyArgs

type QueueIamPolicyArgs struct {
	// Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
	Bindings BindingArrayInput
	// `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
	Etag     pulumi.StringPtrInput
	Location pulumi.StringPtrInput
	Project  pulumi.StringPtrInput
	QueueId  pulumi.StringInput
	// Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Version pulumi.IntPtrInput
}

The set of arguments for constructing a QueueIamPolicy resource.

func (QueueIamPolicyArgs) ElementType

func (QueueIamPolicyArgs) ElementType() reflect.Type

type QueueIamPolicyInput

type QueueIamPolicyInput interface {
	pulumi.Input

	ToQueueIamPolicyOutput() QueueIamPolicyOutput
	ToQueueIamPolicyOutputWithContext(ctx context.Context) QueueIamPolicyOutput
}

type QueueIamPolicyOutput

type QueueIamPolicyOutput struct{ *pulumi.OutputState }

func (QueueIamPolicyOutput) ElementType

func (QueueIamPolicyOutput) ElementType() reflect.Type

func (QueueIamPolicyOutput) ToQueueIamPolicyOutput

func (o QueueIamPolicyOutput) ToQueueIamPolicyOutput() QueueIamPolicyOutput

func (QueueIamPolicyOutput) ToQueueIamPolicyOutputWithContext

func (o QueueIamPolicyOutput) ToQueueIamPolicyOutputWithContext(ctx context.Context) QueueIamPolicyOutput

type QueueIamPolicyState

type QueueIamPolicyState struct {
}

func (QueueIamPolicyState) ElementType

func (QueueIamPolicyState) ElementType() reflect.Type

type QueueInput

type QueueInput interface {
	pulumi.Input

	ToQueueOutput() QueueOutput
	ToQueueOutputWithContext(ctx context.Context) QueueOutput
}

type QueueOutput

type QueueOutput struct{ *pulumi.OutputState }

func (QueueOutput) ElementType

func (QueueOutput) ElementType() reflect.Type

func (QueueOutput) ToQueueOutput

func (o QueueOutput) ToQueueOutput() QueueOutput

func (QueueOutput) ToQueueOutputWithContext

func (o QueueOutput) ToQueueOutputWithContext(ctx context.Context) QueueOutput

type QueueState

type QueueState struct {
}

func (QueueState) ElementType

func (QueueState) ElementType() reflect.Type

type QueueStatsResponse

type QueueStatsResponse struct {
	// The number of requests that the queue has dispatched but has not received a reply for yet.
	ConcurrentDispatchesCount string `pulumi:"concurrentDispatchesCount"`
	// The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
	EffectiveExecutionRate float64 `pulumi:"effectiveExecutionRate"`
	// The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
	ExecutedLastMinuteCount string `pulumi:"executedLastMinuteCount"`
	// An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
	OldestEstimatedArrivalTime string `pulumi:"oldestEstimatedArrivalTime"`
	// An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven't been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
	TasksCount string `pulumi:"tasksCount"`
}

Statistics for a queue.

type QueueStatsResponseArgs

type QueueStatsResponseArgs struct {
	// The number of requests that the queue has dispatched but has not received a reply for yet.
	ConcurrentDispatchesCount pulumi.StringInput `pulumi:"concurrentDispatchesCount"`
	// The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
	EffectiveExecutionRate pulumi.Float64Input `pulumi:"effectiveExecutionRate"`
	// The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
	ExecutedLastMinuteCount pulumi.StringInput `pulumi:"executedLastMinuteCount"`
	// An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
	OldestEstimatedArrivalTime pulumi.StringInput `pulumi:"oldestEstimatedArrivalTime"`
	// An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven't been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
	TasksCount pulumi.StringInput `pulumi:"tasksCount"`
}

Statistics for a queue.

func (QueueStatsResponseArgs) ElementType

func (QueueStatsResponseArgs) ElementType() reflect.Type

func (QueueStatsResponseArgs) ToQueueStatsResponseOutput

func (i QueueStatsResponseArgs) ToQueueStatsResponseOutput() QueueStatsResponseOutput

func (QueueStatsResponseArgs) ToQueueStatsResponseOutputWithContext

func (i QueueStatsResponseArgs) ToQueueStatsResponseOutputWithContext(ctx context.Context) QueueStatsResponseOutput

func (QueueStatsResponseArgs) ToQueueStatsResponsePtrOutput

func (i QueueStatsResponseArgs) ToQueueStatsResponsePtrOutput() QueueStatsResponsePtrOutput

func (QueueStatsResponseArgs) ToQueueStatsResponsePtrOutputWithContext

func (i QueueStatsResponseArgs) ToQueueStatsResponsePtrOutputWithContext(ctx context.Context) QueueStatsResponsePtrOutput

type QueueStatsResponseInput

type QueueStatsResponseInput interface {
	pulumi.Input

	ToQueueStatsResponseOutput() QueueStatsResponseOutput
	ToQueueStatsResponseOutputWithContext(context.Context) QueueStatsResponseOutput
}

QueueStatsResponseInput is an input type that accepts QueueStatsResponseArgs and QueueStatsResponseOutput values. You can construct a concrete instance of `QueueStatsResponseInput` via:

QueueStatsResponseArgs{...}

type QueueStatsResponseOutput

type QueueStatsResponseOutput struct{ *pulumi.OutputState }

Statistics for a queue.

func (QueueStatsResponseOutput) ConcurrentDispatchesCount

func (o QueueStatsResponseOutput) ConcurrentDispatchesCount() pulumi.StringOutput

The number of requests that the queue has dispatched but has not received a reply for yet.

func (QueueStatsResponseOutput) EffectiveExecutionRate

func (o QueueStatsResponseOutput) EffectiveExecutionRate() pulumi.Float64Output

The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.

func (QueueStatsResponseOutput) ElementType

func (QueueStatsResponseOutput) ElementType() reflect.Type

func (QueueStatsResponseOutput) ExecutedLastMinuteCount

func (o QueueStatsResponseOutput) ExecutedLastMinuteCount() pulumi.StringOutput

The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.

func (QueueStatsResponseOutput) OldestEstimatedArrivalTime

func (o QueueStatsResponseOutput) OldestEstimatedArrivalTime() pulumi.StringOutput

An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.

func (QueueStatsResponseOutput) TasksCount

An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven't been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.

func (QueueStatsResponseOutput) ToQueueStatsResponseOutput

func (o QueueStatsResponseOutput) ToQueueStatsResponseOutput() QueueStatsResponseOutput

func (QueueStatsResponseOutput) ToQueueStatsResponseOutputWithContext

func (o QueueStatsResponseOutput) ToQueueStatsResponseOutputWithContext(ctx context.Context) QueueStatsResponseOutput

func (QueueStatsResponseOutput) ToQueueStatsResponsePtrOutput

func (o QueueStatsResponseOutput) ToQueueStatsResponsePtrOutput() QueueStatsResponsePtrOutput

func (QueueStatsResponseOutput) ToQueueStatsResponsePtrOutputWithContext

func (o QueueStatsResponseOutput) ToQueueStatsResponsePtrOutputWithContext(ctx context.Context) QueueStatsResponsePtrOutput

type QueueStatsResponsePtrInput

type QueueStatsResponsePtrInput interface {
	pulumi.Input

	ToQueueStatsResponsePtrOutput() QueueStatsResponsePtrOutput
	ToQueueStatsResponsePtrOutputWithContext(context.Context) QueueStatsResponsePtrOutput
}

QueueStatsResponsePtrInput is an input type that accepts QueueStatsResponseArgs, QueueStatsResponsePtr and QueueStatsResponsePtrOutput values. You can construct a concrete instance of `QueueStatsResponsePtrInput` via:

        QueueStatsResponseArgs{...}

or:

        nil

type QueueStatsResponsePtrOutput

type QueueStatsResponsePtrOutput struct{ *pulumi.OutputState }

func (QueueStatsResponsePtrOutput) ConcurrentDispatchesCount

func (o QueueStatsResponsePtrOutput) ConcurrentDispatchesCount() pulumi.StringPtrOutput

The number of requests that the queue has dispatched but has not received a reply for yet.

func (QueueStatsResponsePtrOutput) EffectiveExecutionRate

func (o QueueStatsResponsePtrOutput) EffectiveExecutionRate() pulumi.Float64PtrOutput

The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.

func (QueueStatsResponsePtrOutput) Elem

func (QueueStatsResponsePtrOutput) ElementType

func (QueueStatsResponsePtrOutput) ExecutedLastMinuteCount

func (o QueueStatsResponsePtrOutput) ExecutedLastMinuteCount() pulumi.StringPtrOutput

The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.

func (QueueStatsResponsePtrOutput) OldestEstimatedArrivalTime

func (o QueueStatsResponsePtrOutput) OldestEstimatedArrivalTime() pulumi.StringPtrOutput

An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.

func (QueueStatsResponsePtrOutput) TasksCount

An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven't been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.

func (QueueStatsResponsePtrOutput) ToQueueStatsResponsePtrOutput

func (o QueueStatsResponsePtrOutput) ToQueueStatsResponsePtrOutput() QueueStatsResponsePtrOutput

func (QueueStatsResponsePtrOutput) ToQueueStatsResponsePtrOutputWithContext

func (o QueueStatsResponsePtrOutput) ToQueueStatsResponsePtrOutputWithContext(ctx context.Context) QueueStatsResponsePtrOutput

type QueueType added in v0.4.0

type QueueType string

Immutable. The type of a queue (push or pull). `Queue.type` is an immutable property of the queue that is set at the queue creation time. When left unspecified, the default value of `PUSH` is selected.

func (QueueType) ElementType added in v0.4.0

func (QueueType) ElementType() reflect.Type

func (QueueType) ToQueueTypeOutput added in v0.6.0

func (e QueueType) ToQueueTypeOutput() QueueTypeOutput

func (QueueType) ToQueueTypeOutputWithContext added in v0.6.0

func (e QueueType) ToQueueTypeOutputWithContext(ctx context.Context) QueueTypeOutput

func (QueueType) ToQueueTypePtrOutput added in v0.6.0

func (e QueueType) ToQueueTypePtrOutput() QueueTypePtrOutput

func (QueueType) ToQueueTypePtrOutputWithContext added in v0.6.0

func (e QueueType) ToQueueTypePtrOutputWithContext(ctx context.Context) QueueTypePtrOutput

func (QueueType) ToStringOutput added in v0.4.0

func (e QueueType) ToStringOutput() pulumi.StringOutput

func (QueueType) ToStringOutputWithContext added in v0.4.0

func (e QueueType) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (QueueType) ToStringPtrOutput added in v0.4.0

func (e QueueType) ToStringPtrOutput() pulumi.StringPtrOutput

func (QueueType) ToStringPtrOutputWithContext added in v0.4.0

func (e QueueType) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type QueueTypeInput added in v0.6.0

type QueueTypeInput interface {
	pulumi.Input

	ToQueueTypeOutput() QueueTypeOutput
	ToQueueTypeOutputWithContext(context.Context) QueueTypeOutput
}

QueueTypeInput is an input type that accepts QueueTypeArgs and QueueTypeOutput values. You can construct a concrete instance of `QueueTypeInput` via:

QueueTypeArgs{...}

type QueueTypeOutput added in v0.6.0

type QueueTypeOutput struct{ *pulumi.OutputState }

func (QueueTypeOutput) ElementType added in v0.6.0

func (QueueTypeOutput) ElementType() reflect.Type

func (QueueTypeOutput) ToQueueTypeOutput added in v0.6.0

func (o QueueTypeOutput) ToQueueTypeOutput() QueueTypeOutput

func (QueueTypeOutput) ToQueueTypeOutputWithContext added in v0.6.0

func (o QueueTypeOutput) ToQueueTypeOutputWithContext(ctx context.Context) QueueTypeOutput

func (QueueTypeOutput) ToQueueTypePtrOutput added in v0.6.0

func (o QueueTypeOutput) ToQueueTypePtrOutput() QueueTypePtrOutput

func (QueueTypeOutput) ToQueueTypePtrOutputWithContext added in v0.6.0

func (o QueueTypeOutput) ToQueueTypePtrOutputWithContext(ctx context.Context) QueueTypePtrOutput

func (QueueTypeOutput) ToStringOutput added in v0.6.0

func (o QueueTypeOutput) ToStringOutput() pulumi.StringOutput

func (QueueTypeOutput) ToStringOutputWithContext added in v0.6.0

func (o QueueTypeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (QueueTypeOutput) ToStringPtrOutput added in v0.6.0

func (o QueueTypeOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (QueueTypeOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o QueueTypeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type QueueTypePtrInput added in v0.6.0

type QueueTypePtrInput interface {
	pulumi.Input

	ToQueueTypePtrOutput() QueueTypePtrOutput
	ToQueueTypePtrOutputWithContext(context.Context) QueueTypePtrOutput
}

func QueueTypePtr added in v0.6.0

func QueueTypePtr(v string) QueueTypePtrInput

type QueueTypePtrOutput added in v0.6.0

type QueueTypePtrOutput struct{ *pulumi.OutputState }

func (QueueTypePtrOutput) Elem added in v0.6.0

func (QueueTypePtrOutput) ElementType added in v0.6.0

func (QueueTypePtrOutput) ElementType() reflect.Type

func (QueueTypePtrOutput) ToQueueTypePtrOutput added in v0.6.0

func (o QueueTypePtrOutput) ToQueueTypePtrOutput() QueueTypePtrOutput

func (QueueTypePtrOutput) ToQueueTypePtrOutputWithContext added in v0.6.0

func (o QueueTypePtrOutput) ToQueueTypePtrOutputWithContext(ctx context.Context) QueueTypePtrOutput

func (QueueTypePtrOutput) ToStringPtrOutput added in v0.6.0

func (o QueueTypePtrOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (QueueTypePtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o QueueTypePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type RateLimits

type RateLimits struct {
	// The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.
	MaxBurstSize *int `pulumi:"maxBurstSize"`
	// The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).
	MaxConcurrentDispatches *int `pulumi:"maxConcurrentDispatches"`
	// The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).
	MaxDispatchesPerSecond *float64 `pulumi:"maxDispatchesPerSecond"`
}

Rate limits. This message determines the maximum rate that tasks can be dispatched by a queue, regardless of whether the dispatch is a first task attempt or a retry. Note: The debugging command, RunTask, will run a task even if the queue has reached its RateLimits.

type RateLimitsArgs

type RateLimitsArgs struct {
	// The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.
	MaxBurstSize pulumi.IntPtrInput `pulumi:"maxBurstSize"`
	// The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).
	MaxConcurrentDispatches pulumi.IntPtrInput `pulumi:"maxConcurrentDispatches"`
	// The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).
	MaxDispatchesPerSecond pulumi.Float64PtrInput `pulumi:"maxDispatchesPerSecond"`
}

Rate limits. This message determines the maximum rate that tasks can be dispatched by a queue, regardless of whether the dispatch is a first task attempt or a retry. Note: The debugging command, RunTask, will run a task even if the queue has reached its RateLimits.

func (RateLimitsArgs) ElementType

func (RateLimitsArgs) ElementType() reflect.Type

func (RateLimitsArgs) ToRateLimitsOutput

func (i RateLimitsArgs) ToRateLimitsOutput() RateLimitsOutput

func (RateLimitsArgs) ToRateLimitsOutputWithContext

func (i RateLimitsArgs) ToRateLimitsOutputWithContext(ctx context.Context) RateLimitsOutput

func (RateLimitsArgs) ToRateLimitsPtrOutput

func (i RateLimitsArgs) ToRateLimitsPtrOutput() RateLimitsPtrOutput

func (RateLimitsArgs) ToRateLimitsPtrOutputWithContext

func (i RateLimitsArgs) ToRateLimitsPtrOutputWithContext(ctx context.Context) RateLimitsPtrOutput

type RateLimitsInput

type RateLimitsInput interface {
	pulumi.Input

	ToRateLimitsOutput() RateLimitsOutput
	ToRateLimitsOutputWithContext(context.Context) RateLimitsOutput
}

RateLimitsInput is an input type that accepts RateLimitsArgs and RateLimitsOutput values. You can construct a concrete instance of `RateLimitsInput` via:

RateLimitsArgs{...}

type RateLimitsOutput

type RateLimitsOutput struct{ *pulumi.OutputState }

Rate limits. This message determines the maximum rate that tasks can be dispatched by a queue, regardless of whether the dispatch is a first task attempt or a retry. Note: The debugging command, RunTask, will run a task even if the queue has reached its RateLimits.

func (RateLimitsOutput) ElementType

func (RateLimitsOutput) ElementType() reflect.Type

func (RateLimitsOutput) MaxBurstSize

func (o RateLimitsOutput) MaxBurstSize() pulumi.IntPtrOutput

The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.

func (RateLimitsOutput) MaxConcurrentDispatches

func (o RateLimitsOutput) MaxConcurrentDispatches() pulumi.IntPtrOutput

The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).

func (RateLimitsOutput) MaxDispatchesPerSecond

func (o RateLimitsOutput) MaxDispatchesPerSecond() pulumi.Float64PtrOutput

The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).

func (RateLimitsOutput) ToRateLimitsOutput

func (o RateLimitsOutput) ToRateLimitsOutput() RateLimitsOutput

func (RateLimitsOutput) ToRateLimitsOutputWithContext

func (o RateLimitsOutput) ToRateLimitsOutputWithContext(ctx context.Context) RateLimitsOutput

func (RateLimitsOutput) ToRateLimitsPtrOutput

func (o RateLimitsOutput) ToRateLimitsPtrOutput() RateLimitsPtrOutput

func (RateLimitsOutput) ToRateLimitsPtrOutputWithContext

func (o RateLimitsOutput) ToRateLimitsPtrOutputWithContext(ctx context.Context) RateLimitsPtrOutput

type RateLimitsPtrInput

type RateLimitsPtrInput interface {
	pulumi.Input

	ToRateLimitsPtrOutput() RateLimitsPtrOutput
	ToRateLimitsPtrOutputWithContext(context.Context) RateLimitsPtrOutput
}

RateLimitsPtrInput is an input type that accepts RateLimitsArgs, RateLimitsPtr and RateLimitsPtrOutput values. You can construct a concrete instance of `RateLimitsPtrInput` via:

        RateLimitsArgs{...}

or:

        nil

func RateLimitsPtr

func RateLimitsPtr(v *RateLimitsArgs) RateLimitsPtrInput

type RateLimitsPtrOutput

type RateLimitsPtrOutput struct{ *pulumi.OutputState }

func (RateLimitsPtrOutput) Elem

func (RateLimitsPtrOutput) ElementType

func (RateLimitsPtrOutput) ElementType() reflect.Type

func (RateLimitsPtrOutput) MaxBurstSize

func (o RateLimitsPtrOutput) MaxBurstSize() pulumi.IntPtrOutput

The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.

func (RateLimitsPtrOutput) MaxConcurrentDispatches

func (o RateLimitsPtrOutput) MaxConcurrentDispatches() pulumi.IntPtrOutput

The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).

func (RateLimitsPtrOutput) MaxDispatchesPerSecond

func (o RateLimitsPtrOutput) MaxDispatchesPerSecond() pulumi.Float64PtrOutput

The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).

func (RateLimitsPtrOutput) ToRateLimitsPtrOutput

func (o RateLimitsPtrOutput) ToRateLimitsPtrOutput() RateLimitsPtrOutput

func (RateLimitsPtrOutput) ToRateLimitsPtrOutputWithContext

func (o RateLimitsPtrOutput) ToRateLimitsPtrOutputWithContext(ctx context.Context) RateLimitsPtrOutput

type RateLimitsResponse

type RateLimitsResponse struct {
	// The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.
	MaxBurstSize int `pulumi:"maxBurstSize"`
	// The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).
	MaxConcurrentDispatches int `pulumi:"maxConcurrentDispatches"`
	// The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).
	MaxDispatchesPerSecond float64 `pulumi:"maxDispatchesPerSecond"`
}

Rate limits. This message determines the maximum rate that tasks can be dispatched by a queue, regardless of whether the dispatch is a first task attempt or a retry. Note: The debugging command, RunTask, will run a task even if the queue has reached its RateLimits.

type RateLimitsResponseArgs

type RateLimitsResponseArgs struct {
	// The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.
	MaxBurstSize pulumi.IntInput `pulumi:"maxBurstSize"`
	// The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).
	MaxConcurrentDispatches pulumi.IntInput `pulumi:"maxConcurrentDispatches"`
	// The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).
	MaxDispatchesPerSecond pulumi.Float64Input `pulumi:"maxDispatchesPerSecond"`
}

Rate limits. This message determines the maximum rate that tasks can be dispatched by a queue, regardless of whether the dispatch is a first task attempt or a retry. Note: The debugging command, RunTask, will run a task even if the queue has reached its RateLimits.

func (RateLimitsResponseArgs) ElementType

func (RateLimitsResponseArgs) ElementType() reflect.Type

func (RateLimitsResponseArgs) ToRateLimitsResponseOutput

func (i RateLimitsResponseArgs) ToRateLimitsResponseOutput() RateLimitsResponseOutput

func (RateLimitsResponseArgs) ToRateLimitsResponseOutputWithContext

func (i RateLimitsResponseArgs) ToRateLimitsResponseOutputWithContext(ctx context.Context) RateLimitsResponseOutput

func (RateLimitsResponseArgs) ToRateLimitsResponsePtrOutput

func (i RateLimitsResponseArgs) ToRateLimitsResponsePtrOutput() RateLimitsResponsePtrOutput

func (RateLimitsResponseArgs) ToRateLimitsResponsePtrOutputWithContext

func (i RateLimitsResponseArgs) ToRateLimitsResponsePtrOutputWithContext(ctx context.Context) RateLimitsResponsePtrOutput

type RateLimitsResponseInput

type RateLimitsResponseInput interface {
	pulumi.Input

	ToRateLimitsResponseOutput() RateLimitsResponseOutput
	ToRateLimitsResponseOutputWithContext(context.Context) RateLimitsResponseOutput
}

RateLimitsResponseInput is an input type that accepts RateLimitsResponseArgs and RateLimitsResponseOutput values. You can construct a concrete instance of `RateLimitsResponseInput` via:

RateLimitsResponseArgs{...}

type RateLimitsResponseOutput

type RateLimitsResponseOutput struct{ *pulumi.OutputState }

Rate limits. This message determines the maximum rate that tasks can be dispatched by a queue, regardless of whether the dispatch is a first task attempt or a retry. Note: The debugging command, RunTask, will run a task even if the queue has reached its RateLimits.

func (RateLimitsResponseOutput) ElementType

func (RateLimitsResponseOutput) ElementType() reflect.Type

func (RateLimitsResponseOutput) MaxBurstSize

func (o RateLimitsResponseOutput) MaxBurstSize() pulumi.IntOutput

The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.

func (RateLimitsResponseOutput) MaxConcurrentDispatches

func (o RateLimitsResponseOutput) MaxConcurrentDispatches() pulumi.IntOutput

The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).

func (RateLimitsResponseOutput) MaxDispatchesPerSecond

func (o RateLimitsResponseOutput) MaxDispatchesPerSecond() pulumi.Float64Output

The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).

func (RateLimitsResponseOutput) ToRateLimitsResponseOutput

func (o RateLimitsResponseOutput) ToRateLimitsResponseOutput() RateLimitsResponseOutput

func (RateLimitsResponseOutput) ToRateLimitsResponseOutputWithContext

func (o RateLimitsResponseOutput) ToRateLimitsResponseOutputWithContext(ctx context.Context) RateLimitsResponseOutput

func (RateLimitsResponseOutput) ToRateLimitsResponsePtrOutput

func (o RateLimitsResponseOutput) ToRateLimitsResponsePtrOutput() RateLimitsResponsePtrOutput

func (RateLimitsResponseOutput) ToRateLimitsResponsePtrOutputWithContext

func (o RateLimitsResponseOutput) ToRateLimitsResponsePtrOutputWithContext(ctx context.Context) RateLimitsResponsePtrOutput

type RateLimitsResponsePtrInput

type RateLimitsResponsePtrInput interface {
	pulumi.Input

	ToRateLimitsResponsePtrOutput() RateLimitsResponsePtrOutput
	ToRateLimitsResponsePtrOutputWithContext(context.Context) RateLimitsResponsePtrOutput
}

RateLimitsResponsePtrInput is an input type that accepts RateLimitsResponseArgs, RateLimitsResponsePtr and RateLimitsResponsePtrOutput values. You can construct a concrete instance of `RateLimitsResponsePtrInput` via:

        RateLimitsResponseArgs{...}

or:

        nil

type RateLimitsResponsePtrOutput

type RateLimitsResponsePtrOutput struct{ *pulumi.OutputState }

func (RateLimitsResponsePtrOutput) Elem

func (RateLimitsResponsePtrOutput) ElementType

func (RateLimitsResponsePtrOutput) MaxBurstSize

The max burst size. Max burst size limits how fast tasks in queue are processed when many tasks are in the queue and the rate is high. This field allows the queue to have a high rate so processing starts shortly after a task is enqueued, but still limits resource usage when many tasks are enqueued in a short period of time. The [token bucket](https://wikipedia.org/wiki/Token_Bucket) algorithm is used to control the rate of task dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously refilled with new tokens based on max_dispatches_per_second. The default value of `max_burst_size` is picked by Cloud Tasks based on the value of max_dispatches_per_second. The maximum value of `max_burst_size` is 500. For App Engine queues that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). If UpdateQueue is called on a queue without explicitly setting a value for `max_burst_size`, `max_burst_size` value will get updated if UpdateQueue is updating max_dispatches_per_second.

func (RateLimitsResponsePtrOutput) MaxConcurrentDispatches

func (o RateLimitsResponsePtrOutput) MaxConcurrentDispatches() pulumi.IntPtrOutput

The maximum number of concurrent tasks that Cloud Tasks allows to be dispatched for this queue. After this threshold has been reached, Cloud Tasks stops dispatching tasks until the number of concurrent requests decreases. If unspecified when the queue is created, Cloud Tasks will pick the default. The maximum allowed value is 5,000. This field has the same meaning as [max_concurrent_requests in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#max_concurrent_requests).

func (RateLimitsResponsePtrOutput) MaxDispatchesPerSecond

func (o RateLimitsResponsePtrOutput) MaxDispatchesPerSecond() pulumi.Float64PtrOutput

The maximum rate at which tasks are dispatched from this queue. If unspecified when the queue is created, Cloud Tasks will pick the default. * For App Engine queues, the maximum allowed value is 500. This field has the same meaning as [rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#rate).

func (RateLimitsResponsePtrOutput) ToRateLimitsResponsePtrOutput

func (o RateLimitsResponsePtrOutput) ToRateLimitsResponsePtrOutput() RateLimitsResponsePtrOutput

func (RateLimitsResponsePtrOutput) ToRateLimitsResponsePtrOutputWithContext

func (o RateLimitsResponsePtrOutput) ToRateLimitsResponsePtrOutputWithContext(ctx context.Context) RateLimitsResponsePtrOutput

type RetryConfig

type RetryConfig struct {
	// Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxAttempts *int `pulumi:"maxAttempts"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxBackoff *string `pulumi:"maxBackoff"`
	// The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxDoublings *int `pulumi:"maxDoublings"`
	// If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxRetryDuration *string `pulumi:"maxRetryDuration"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MinBackoff *string `pulumi:"minBackoff"`
}

Retry config. These settings determine when a failed task attempt is retried.

type RetryConfigArgs

type RetryConfigArgs struct {
	// Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxAttempts pulumi.IntPtrInput `pulumi:"maxAttempts"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxBackoff pulumi.StringPtrInput `pulumi:"maxBackoff"`
	// The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxDoublings pulumi.IntPtrInput `pulumi:"maxDoublings"`
	// If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxRetryDuration pulumi.StringPtrInput `pulumi:"maxRetryDuration"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MinBackoff pulumi.StringPtrInput `pulumi:"minBackoff"`
}

Retry config. These settings determine when a failed task attempt is retried.

func (RetryConfigArgs) ElementType

func (RetryConfigArgs) ElementType() reflect.Type

func (RetryConfigArgs) ToRetryConfigOutput

func (i RetryConfigArgs) ToRetryConfigOutput() RetryConfigOutput

func (RetryConfigArgs) ToRetryConfigOutputWithContext

func (i RetryConfigArgs) ToRetryConfigOutputWithContext(ctx context.Context) RetryConfigOutput

func (RetryConfigArgs) ToRetryConfigPtrOutput

func (i RetryConfigArgs) ToRetryConfigPtrOutput() RetryConfigPtrOutput

func (RetryConfigArgs) ToRetryConfigPtrOutputWithContext

func (i RetryConfigArgs) ToRetryConfigPtrOutputWithContext(ctx context.Context) RetryConfigPtrOutput

type RetryConfigInput

type RetryConfigInput interface {
	pulumi.Input

	ToRetryConfigOutput() RetryConfigOutput
	ToRetryConfigOutputWithContext(context.Context) RetryConfigOutput
}

RetryConfigInput is an input type that accepts RetryConfigArgs and RetryConfigOutput values. You can construct a concrete instance of `RetryConfigInput` via:

RetryConfigArgs{...}

type RetryConfigOutput

type RetryConfigOutput struct{ *pulumi.OutputState }

Retry config. These settings determine when a failed task attempt is retried.

func (RetryConfigOutput) ElementType

func (RetryConfigOutput) ElementType() reflect.Type

func (RetryConfigOutput) MaxAttempts

func (o RetryConfigOutput) MaxAttempts() pulumi.IntPtrOutput

Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigOutput) MaxBackoff

func (o RetryConfigOutput) MaxBackoff() pulumi.StringPtrOutput

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigOutput) MaxDoublings

func (o RetryConfigOutput) MaxDoublings() pulumi.IntPtrOutput

The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigOutput) MaxRetryDuration

func (o RetryConfigOutput) MaxRetryDuration() pulumi.StringPtrOutput

If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigOutput) MinBackoff

func (o RetryConfigOutput) MinBackoff() pulumi.StringPtrOutput

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigOutput) ToRetryConfigOutput

func (o RetryConfigOutput) ToRetryConfigOutput() RetryConfigOutput

func (RetryConfigOutput) ToRetryConfigOutputWithContext

func (o RetryConfigOutput) ToRetryConfigOutputWithContext(ctx context.Context) RetryConfigOutput

func (RetryConfigOutput) ToRetryConfigPtrOutput

func (o RetryConfigOutput) ToRetryConfigPtrOutput() RetryConfigPtrOutput

func (RetryConfigOutput) ToRetryConfigPtrOutputWithContext

func (o RetryConfigOutput) ToRetryConfigPtrOutputWithContext(ctx context.Context) RetryConfigPtrOutput

type RetryConfigPtrInput

type RetryConfigPtrInput interface {
	pulumi.Input

	ToRetryConfigPtrOutput() RetryConfigPtrOutput
	ToRetryConfigPtrOutputWithContext(context.Context) RetryConfigPtrOutput
}

RetryConfigPtrInput is an input type that accepts RetryConfigArgs, RetryConfigPtr and RetryConfigPtrOutput values. You can construct a concrete instance of `RetryConfigPtrInput` via:

        RetryConfigArgs{...}

or:

        nil

func RetryConfigPtr

func RetryConfigPtr(v *RetryConfigArgs) RetryConfigPtrInput

type RetryConfigPtrOutput

type RetryConfigPtrOutput struct{ *pulumi.OutputState }

func (RetryConfigPtrOutput) Elem

func (RetryConfigPtrOutput) ElementType

func (RetryConfigPtrOutput) ElementType() reflect.Type

func (RetryConfigPtrOutput) MaxAttempts

func (o RetryConfigPtrOutput) MaxAttempts() pulumi.IntPtrOutput

Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigPtrOutput) MaxBackoff

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigPtrOutput) MaxDoublings

func (o RetryConfigPtrOutput) MaxDoublings() pulumi.IntPtrOutput

The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigPtrOutput) MaxRetryDuration

func (o RetryConfigPtrOutput) MaxRetryDuration() pulumi.StringPtrOutput

If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigPtrOutput) MinBackoff

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigPtrOutput) ToRetryConfigPtrOutput

func (o RetryConfigPtrOutput) ToRetryConfigPtrOutput() RetryConfigPtrOutput

func (RetryConfigPtrOutput) ToRetryConfigPtrOutputWithContext

func (o RetryConfigPtrOutput) ToRetryConfigPtrOutputWithContext(ctx context.Context) RetryConfigPtrOutput

type RetryConfigResponse

type RetryConfigResponse struct {
	// Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxAttempts int `pulumi:"maxAttempts"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxBackoff string `pulumi:"maxBackoff"`
	// The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxDoublings int `pulumi:"maxDoublings"`
	// If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxRetryDuration string `pulumi:"maxRetryDuration"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MinBackoff string `pulumi:"minBackoff"`
}

Retry config. These settings determine when a failed task attempt is retried.

type RetryConfigResponseArgs

type RetryConfigResponseArgs struct {
	// Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxAttempts pulumi.IntInput `pulumi:"maxAttempts"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxBackoff pulumi.StringInput `pulumi:"maxBackoff"`
	// The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxDoublings pulumi.IntInput `pulumi:"maxDoublings"`
	// If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MaxRetryDuration pulumi.StringInput `pulumi:"maxRetryDuration"`
	// A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
	MinBackoff pulumi.StringInput `pulumi:"minBackoff"`
}

Retry config. These settings determine when a failed task attempt is retried.

func (RetryConfigResponseArgs) ElementType

func (RetryConfigResponseArgs) ElementType() reflect.Type

func (RetryConfigResponseArgs) ToRetryConfigResponseOutput

func (i RetryConfigResponseArgs) ToRetryConfigResponseOutput() RetryConfigResponseOutput

func (RetryConfigResponseArgs) ToRetryConfigResponseOutputWithContext

func (i RetryConfigResponseArgs) ToRetryConfigResponseOutputWithContext(ctx context.Context) RetryConfigResponseOutput

func (RetryConfigResponseArgs) ToRetryConfigResponsePtrOutput

func (i RetryConfigResponseArgs) ToRetryConfigResponsePtrOutput() RetryConfigResponsePtrOutput

func (RetryConfigResponseArgs) ToRetryConfigResponsePtrOutputWithContext

func (i RetryConfigResponseArgs) ToRetryConfigResponsePtrOutputWithContext(ctx context.Context) RetryConfigResponsePtrOutput

type RetryConfigResponseInput

type RetryConfigResponseInput interface {
	pulumi.Input

	ToRetryConfigResponseOutput() RetryConfigResponseOutput
	ToRetryConfigResponseOutputWithContext(context.Context) RetryConfigResponseOutput
}

RetryConfigResponseInput is an input type that accepts RetryConfigResponseArgs and RetryConfigResponseOutput values. You can construct a concrete instance of `RetryConfigResponseInput` via:

RetryConfigResponseArgs{...}

type RetryConfigResponseOutput

type RetryConfigResponseOutput struct{ *pulumi.OutputState }

Retry config. These settings determine when a failed task attempt is retried.

func (RetryConfigResponseOutput) ElementType

func (RetryConfigResponseOutput) ElementType() reflect.Type

func (RetryConfigResponseOutput) MaxAttempts

func (o RetryConfigResponseOutput) MaxAttempts() pulumi.IntOutput

Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponseOutput) MaxBackoff

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponseOutput) MaxDoublings

func (o RetryConfigResponseOutput) MaxDoublings() pulumi.IntOutput

The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponseOutput) MaxRetryDuration

func (o RetryConfigResponseOutput) MaxRetryDuration() pulumi.StringOutput

If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponseOutput) MinBackoff

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponseOutput) ToRetryConfigResponseOutput

func (o RetryConfigResponseOutput) ToRetryConfigResponseOutput() RetryConfigResponseOutput

func (RetryConfigResponseOutput) ToRetryConfigResponseOutputWithContext

func (o RetryConfigResponseOutput) ToRetryConfigResponseOutputWithContext(ctx context.Context) RetryConfigResponseOutput

func (RetryConfigResponseOutput) ToRetryConfigResponsePtrOutput

func (o RetryConfigResponseOutput) ToRetryConfigResponsePtrOutput() RetryConfigResponsePtrOutput

func (RetryConfigResponseOutput) ToRetryConfigResponsePtrOutputWithContext

func (o RetryConfigResponseOutput) ToRetryConfigResponsePtrOutputWithContext(ctx context.Context) RetryConfigResponsePtrOutput

type RetryConfigResponsePtrInput

type RetryConfigResponsePtrInput interface {
	pulumi.Input

	ToRetryConfigResponsePtrOutput() RetryConfigResponsePtrOutput
	ToRetryConfigResponsePtrOutputWithContext(context.Context) RetryConfigResponsePtrOutput
}

RetryConfigResponsePtrInput is an input type that accepts RetryConfigResponseArgs, RetryConfigResponsePtr and RetryConfigResponsePtrOutput values. You can construct a concrete instance of `RetryConfigResponsePtrInput` via:

        RetryConfigResponseArgs{...}

or:

        nil

type RetryConfigResponsePtrOutput

type RetryConfigResponsePtrOutput struct{ *pulumi.OutputState }

func (RetryConfigResponsePtrOutput) Elem

func (RetryConfigResponsePtrOutput) ElementType

func (RetryConfigResponsePtrOutput) MaxAttempts

Number of attempts per task. Cloud Tasks will attempt the task `max_attempts` times (that is, if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponsePtrOutput) MaxBackoff

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_backoff` will be truncated to the nearest second. This field has the same meaning as [max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponsePtrOutput) MaxDoublings

The time between retries will double `max_doublings` times. A task's retry interval starts at min_backoff, then doubles `max_doublings` times, then increases linearly, and finally retries at intervals of max_backoff up to max_attempts times. For example, if min_backoff is 10s, max_backoff is 300s, and `max_doublings` is 3, then the a task will first be retried in 10s. The retry interval will double three times, and then increase linearly by 2^3 * 10s. Finally, the task will retry at intervals of max_backoff until the task has been attempted max_attempts times. Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, .... If unspecified when the queue is created, Cloud Tasks will pick the default. This field has the same meaning as [max_doublings in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponsePtrOutput) MaxRetryDuration

If positive, `max_retry_duration` specifies the time limit for retrying a failed task, measured from when the task was first attempted. Once `max_retry_duration` time has passed *and* the task has been attempted max_attempts times, no further attempts will be made and the task will be deleted. If zero, then the task age is unlimited. If unspecified when the queue is created, Cloud Tasks will pick the default. `max_retry_duration` will be truncated to the nearest second. This field has the same meaning as [task_age_limit in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponsePtrOutput) MinBackoff

A task will be scheduled for retry between min_backoff and max_backoff duration after it fails, if the queue's RetryConfig specifies that the task should be retried. If unspecified when the queue is created, Cloud Tasks will pick the default. `min_backoff` will be truncated to the nearest second. This field has the same meaning as [min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).

func (RetryConfigResponsePtrOutput) ToRetryConfigResponsePtrOutput

func (o RetryConfigResponsePtrOutput) ToRetryConfigResponsePtrOutput() RetryConfigResponsePtrOutput

func (RetryConfigResponsePtrOutput) ToRetryConfigResponsePtrOutputWithContext

func (o RetryConfigResponsePtrOutput) ToRetryConfigResponsePtrOutputWithContext(ctx context.Context) RetryConfigResponsePtrOutput

type StackdriverLoggingConfig

type StackdriverLoggingConfig struct {
	// Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.
	SamplingRatio *float64 `pulumi:"samplingRatio"`
}

Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/).

type StackdriverLoggingConfigArgs

type StackdriverLoggingConfigArgs struct {
	// Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.
	SamplingRatio pulumi.Float64PtrInput `pulumi:"samplingRatio"`
}

Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/).

func (StackdriverLoggingConfigArgs) ElementType

func (StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigOutput

func (i StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigOutput() StackdriverLoggingConfigOutput

func (StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigOutputWithContext

func (i StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigOutputWithContext(ctx context.Context) StackdriverLoggingConfigOutput

func (StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigPtrOutput

func (i StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigPtrOutput() StackdriverLoggingConfigPtrOutput

func (StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigPtrOutputWithContext

func (i StackdriverLoggingConfigArgs) ToStackdriverLoggingConfigPtrOutputWithContext(ctx context.Context) StackdriverLoggingConfigPtrOutput

type StackdriverLoggingConfigInput

type StackdriverLoggingConfigInput interface {
	pulumi.Input

	ToStackdriverLoggingConfigOutput() StackdriverLoggingConfigOutput
	ToStackdriverLoggingConfigOutputWithContext(context.Context) StackdriverLoggingConfigOutput
}

StackdriverLoggingConfigInput is an input type that accepts StackdriverLoggingConfigArgs and StackdriverLoggingConfigOutput values. You can construct a concrete instance of `StackdriverLoggingConfigInput` via:

StackdriverLoggingConfigArgs{...}

type StackdriverLoggingConfigOutput

type StackdriverLoggingConfigOutput struct{ *pulumi.OutputState }

Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/).

func (StackdriverLoggingConfigOutput) ElementType

func (StackdriverLoggingConfigOutput) SamplingRatio

Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.

func (StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigOutput

func (o StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigOutput() StackdriverLoggingConfigOutput

func (StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigOutputWithContext

func (o StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigOutputWithContext(ctx context.Context) StackdriverLoggingConfigOutput

func (StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigPtrOutput

func (o StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigPtrOutput() StackdriverLoggingConfigPtrOutput

func (StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigPtrOutputWithContext

func (o StackdriverLoggingConfigOutput) ToStackdriverLoggingConfigPtrOutputWithContext(ctx context.Context) StackdriverLoggingConfigPtrOutput

type StackdriverLoggingConfigPtrInput

type StackdriverLoggingConfigPtrInput interface {
	pulumi.Input

	ToStackdriverLoggingConfigPtrOutput() StackdriverLoggingConfigPtrOutput
	ToStackdriverLoggingConfigPtrOutputWithContext(context.Context) StackdriverLoggingConfigPtrOutput
}

StackdriverLoggingConfigPtrInput is an input type that accepts StackdriverLoggingConfigArgs, StackdriverLoggingConfigPtr and StackdriverLoggingConfigPtrOutput values. You can construct a concrete instance of `StackdriverLoggingConfigPtrInput` via:

        StackdriverLoggingConfigArgs{...}

or:

        nil

type StackdriverLoggingConfigPtrOutput

type StackdriverLoggingConfigPtrOutput struct{ *pulumi.OutputState }

func (StackdriverLoggingConfigPtrOutput) Elem

func (StackdriverLoggingConfigPtrOutput) ElementType

func (StackdriverLoggingConfigPtrOutput) SamplingRatio

Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.

func (StackdriverLoggingConfigPtrOutput) ToStackdriverLoggingConfigPtrOutput

func (o StackdriverLoggingConfigPtrOutput) ToStackdriverLoggingConfigPtrOutput() StackdriverLoggingConfigPtrOutput

func (StackdriverLoggingConfigPtrOutput) ToStackdriverLoggingConfigPtrOutputWithContext

func (o StackdriverLoggingConfigPtrOutput) ToStackdriverLoggingConfigPtrOutputWithContext(ctx context.Context) StackdriverLoggingConfigPtrOutput

type StackdriverLoggingConfigResponse

type StackdriverLoggingConfigResponse struct {
	// Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.
	SamplingRatio float64 `pulumi:"samplingRatio"`
}

Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/).

type StackdriverLoggingConfigResponseArgs

type StackdriverLoggingConfigResponseArgs struct {
	// Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.
	SamplingRatio pulumi.Float64Input `pulumi:"samplingRatio"`
}

Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/).

func (StackdriverLoggingConfigResponseArgs) ElementType

func (StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponseOutput

func (i StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponseOutput() StackdriverLoggingConfigResponseOutput

func (StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponseOutputWithContext

func (i StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponseOutputWithContext(ctx context.Context) StackdriverLoggingConfigResponseOutput

func (StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponsePtrOutput

func (i StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponsePtrOutput() StackdriverLoggingConfigResponsePtrOutput

func (StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponsePtrOutputWithContext

func (i StackdriverLoggingConfigResponseArgs) ToStackdriverLoggingConfigResponsePtrOutputWithContext(ctx context.Context) StackdriverLoggingConfigResponsePtrOutput

type StackdriverLoggingConfigResponseInput

type StackdriverLoggingConfigResponseInput interface {
	pulumi.Input

	ToStackdriverLoggingConfigResponseOutput() StackdriverLoggingConfigResponseOutput
	ToStackdriverLoggingConfigResponseOutputWithContext(context.Context) StackdriverLoggingConfigResponseOutput
}

StackdriverLoggingConfigResponseInput is an input type that accepts StackdriverLoggingConfigResponseArgs and StackdriverLoggingConfigResponseOutput values. You can construct a concrete instance of `StackdriverLoggingConfigResponseInput` via:

StackdriverLoggingConfigResponseArgs{...}

type StackdriverLoggingConfigResponseOutput

type StackdriverLoggingConfigResponseOutput struct{ *pulumi.OutputState }

Configuration options for writing logs to [Stackdriver Logging](https://cloud.google.com/logging/docs/).

func (StackdriverLoggingConfigResponseOutput) ElementType

func (StackdriverLoggingConfigResponseOutput) SamplingRatio

Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.

func (StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponseOutput

func (o StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponseOutput() StackdriverLoggingConfigResponseOutput

func (StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponseOutputWithContext

func (o StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponseOutputWithContext(ctx context.Context) StackdriverLoggingConfigResponseOutput

func (StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponsePtrOutput

func (o StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponsePtrOutput() StackdriverLoggingConfigResponsePtrOutput

func (StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponsePtrOutputWithContext

func (o StackdriverLoggingConfigResponseOutput) ToStackdriverLoggingConfigResponsePtrOutputWithContext(ctx context.Context) StackdriverLoggingConfigResponsePtrOutput

type StackdriverLoggingConfigResponsePtrInput

type StackdriverLoggingConfigResponsePtrInput interface {
	pulumi.Input

	ToStackdriverLoggingConfigResponsePtrOutput() StackdriverLoggingConfigResponsePtrOutput
	ToStackdriverLoggingConfigResponsePtrOutputWithContext(context.Context) StackdriverLoggingConfigResponsePtrOutput
}

StackdriverLoggingConfigResponsePtrInput is an input type that accepts StackdriverLoggingConfigResponseArgs, StackdriverLoggingConfigResponsePtr and StackdriverLoggingConfigResponsePtrOutput values. You can construct a concrete instance of `StackdriverLoggingConfigResponsePtrInput` via:

        StackdriverLoggingConfigResponseArgs{...}

or:

        nil

type StackdriverLoggingConfigResponsePtrOutput

type StackdriverLoggingConfigResponsePtrOutput struct{ *pulumi.OutputState }

func (StackdriverLoggingConfigResponsePtrOutput) Elem

func (StackdriverLoggingConfigResponsePtrOutput) ElementType

func (StackdriverLoggingConfigResponsePtrOutput) SamplingRatio

Specifies the fraction of operations to write to [Stackdriver Logging](https://cloud.google.com/logging/docs/). This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the default and means that no operations are logged.

func (StackdriverLoggingConfigResponsePtrOutput) ToStackdriverLoggingConfigResponsePtrOutput

func (o StackdriverLoggingConfigResponsePtrOutput) ToStackdriverLoggingConfigResponsePtrOutput() StackdriverLoggingConfigResponsePtrOutput

func (StackdriverLoggingConfigResponsePtrOutput) ToStackdriverLoggingConfigResponsePtrOutputWithContext

func (o StackdriverLoggingConfigResponsePtrOutput) ToStackdriverLoggingConfigResponsePtrOutputWithContext(ctx context.Context) StackdriverLoggingConfigResponsePtrOutput

type StatusResponse

type StatusResponse struct {
	// The status code, which should be an enum value of google.rpc.Code.
	Code int `pulumi:"code"`
	// A list of messages that carry the error details. There is a common set of message types for APIs to use.
	Details []map[string]string `pulumi:"details"`
	// A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
	Message string `pulumi:"message"`
}

The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).

type StatusResponseArgs

type StatusResponseArgs struct {
	// The status code, which should be an enum value of google.rpc.Code.
	Code pulumi.IntInput `pulumi:"code"`
	// A list of messages that carry the error details. There is a common set of message types for APIs to use.
	Details pulumi.StringMapArrayInput `pulumi:"details"`
	// A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
	Message pulumi.StringInput `pulumi:"message"`
}

The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).

func (StatusResponseArgs) ElementType

func (StatusResponseArgs) ElementType() reflect.Type

func (StatusResponseArgs) ToStatusResponseOutput

func (i StatusResponseArgs) ToStatusResponseOutput() StatusResponseOutput

func (StatusResponseArgs) ToStatusResponseOutputWithContext

func (i StatusResponseArgs) ToStatusResponseOutputWithContext(ctx context.Context) StatusResponseOutput

func (StatusResponseArgs) ToStatusResponsePtrOutput

func (i StatusResponseArgs) ToStatusResponsePtrOutput() StatusResponsePtrOutput

func (StatusResponseArgs) ToStatusResponsePtrOutputWithContext

func (i StatusResponseArgs) ToStatusResponsePtrOutputWithContext(ctx context.Context) StatusResponsePtrOutput

type StatusResponseInput

type StatusResponseInput interface {
	pulumi.Input

	ToStatusResponseOutput() StatusResponseOutput
	ToStatusResponseOutputWithContext(context.Context) StatusResponseOutput
}

StatusResponseInput is an input type that accepts StatusResponseArgs and StatusResponseOutput values. You can construct a concrete instance of `StatusResponseInput` via:

StatusResponseArgs{...}

type StatusResponseOutput

type StatusResponseOutput struct{ *pulumi.OutputState }

The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).

func (StatusResponseOutput) Code

The status code, which should be an enum value of google.rpc.Code.

func (StatusResponseOutput) Details

A list of messages that carry the error details. There is a common set of message types for APIs to use.

func (StatusResponseOutput) ElementType

func (StatusResponseOutput) ElementType() reflect.Type

func (StatusResponseOutput) Message

A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.

func (StatusResponseOutput) ToStatusResponseOutput

func (o StatusResponseOutput) ToStatusResponseOutput() StatusResponseOutput

func (StatusResponseOutput) ToStatusResponseOutputWithContext

func (o StatusResponseOutput) ToStatusResponseOutputWithContext(ctx context.Context) StatusResponseOutput

func (StatusResponseOutput) ToStatusResponsePtrOutput

func (o StatusResponseOutput) ToStatusResponsePtrOutput() StatusResponsePtrOutput

func (StatusResponseOutput) ToStatusResponsePtrOutputWithContext

func (o StatusResponseOutput) ToStatusResponsePtrOutputWithContext(ctx context.Context) StatusResponsePtrOutput

type StatusResponsePtrInput

type StatusResponsePtrInput interface {
	pulumi.Input

	ToStatusResponsePtrOutput() StatusResponsePtrOutput
	ToStatusResponsePtrOutputWithContext(context.Context) StatusResponsePtrOutput
}

StatusResponsePtrInput is an input type that accepts StatusResponseArgs, StatusResponsePtr and StatusResponsePtrOutput values. You can construct a concrete instance of `StatusResponsePtrInput` via:

        StatusResponseArgs{...}

or:

        nil

type StatusResponsePtrOutput

type StatusResponsePtrOutput struct{ *pulumi.OutputState }

func (StatusResponsePtrOutput) Code

The status code, which should be an enum value of google.rpc.Code.

func (StatusResponsePtrOutput) Details

A list of messages that carry the error details. There is a common set of message types for APIs to use.

func (StatusResponsePtrOutput) Elem

func (StatusResponsePtrOutput) ElementType

func (StatusResponsePtrOutput) ElementType() reflect.Type

func (StatusResponsePtrOutput) Message

A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.

func (StatusResponsePtrOutput) ToStatusResponsePtrOutput

func (o StatusResponsePtrOutput) ToStatusResponsePtrOutput() StatusResponsePtrOutput

func (StatusResponsePtrOutput) ToStatusResponsePtrOutputWithContext

func (o StatusResponsePtrOutput) ToStatusResponsePtrOutputWithContext(ctx context.Context) StatusResponsePtrOutput

type Task added in v0.3.0

type Task struct {
	pulumi.CustomResourceState

	// HTTP request that is sent to the App Engine app handler. An App Engine task is a task that has AppEngineHttpRequest set.
	AppEngineHttpRequest AppEngineHttpRequestResponseOutput `pulumi:"appEngineHttpRequest"`
	// The time that the task was created. `create_time` will be truncated to the nearest second.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// The number of attempts dispatched. This count includes attempts which have been dispatched but haven't received a response.
	DispatchCount pulumi.IntOutput `pulumi:"dispatchCount"`
	// The deadline for requests sent to the worker. If the worker does not respond by this deadline then the request is cancelled and the attempt is marked as a `DEADLINE_EXCEEDED` failure. Cloud Tasks will retry the task according to the RetryConfig. Note that when the request is cancelled, Cloud Tasks will stop listening for the response, but whether the worker stops processing depends on the worker. For example, if the worker is stuck, it may not react to cancelled requests. The default and maximum values depend on the type of request: * For HTTP tasks, the default is 10 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine tasks, 0 indicates that the request has the default deadline. The default deadline depends on the [scaling type](https://cloud.google.com/appengine/docs/standard/go/how-instances-are-managed#instance_scaling) of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. Regardless of the task's `dispatch_deadline`, the app handler will not run for longer than than the service's timeout. We recommend setting the `dispatch_deadline` to at most a few seconds more than the app handler's timeout. For more information see [Timeouts](https://cloud.google.com/tasks/docs/creating-appengine-handlers#timeouts). `dispatch_deadline` will be truncated to the nearest millisecond. The deadline is an approximate deadline.
	DispatchDeadline pulumi.StringOutput `pulumi:"dispatchDeadline"`
	// The status of the task's first attempt. Only dispatch_time will be set. The other Attempt information is not retained by Cloud Tasks.
	FirstAttempt AttemptResponseOutput `pulumi:"firstAttempt"`
	// HTTP request that is sent to the task's target. An HTTP task is a task that has HttpRequest set.
	HttpRequest HttpRequestResponseOutput `pulumi:"httpRequest"`
	// The status of the task's last attempt.
	LastAttempt AttemptResponseOutput `pulumi:"lastAttempt"`
	// Optionally caller-specified in CreateTask. The task name. The task name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the task's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters. * `TASK_ID` can contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
	Name pulumi.StringOutput `pulumi:"name"`
	// Pull Message contained in a task in a PULL queue type. This payload type cannot be explicitly set through Cloud Tasks API. Its purpose, currently is to provide backward compatibility with App Engine Task Queue [pull](https://cloud.google.com/appengine/docs/standard/java/taskqueue/pull/) queues to provide a way to inspect contents of pull tasks through the CloudTasks.GetTask.
	PullMessage PullMessageResponseOutput `pulumi:"pullMessage"`
	// The number of attempts which have received a response.
	ResponseCount pulumi.IntOutput `pulumi:"responseCount"`
	// The time when the task is scheduled to be attempted. For App Engine queues, this is when the task will be attempted or retried. `schedule_time` will be truncated to the nearest microsecond.
	ScheduleTime pulumi.StringOutput `pulumi:"scheduleTime"`
	// The view specifies which subset of the Task has been returned.
	View pulumi.StringOutput `pulumi:"view"`
}

Creates a task and adds it to a queue. Tasks cannot be updated after creation; there is no UpdateTask command. * The maximum task size is 100KB.

func GetTask added in v0.3.0

func GetTask(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *TaskState, opts ...pulumi.ResourceOption) (*Task, error)

GetTask gets an existing Task resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewTask added in v0.3.0

func NewTask(ctx *pulumi.Context,
	name string, args *TaskArgs, opts ...pulumi.ResourceOption) (*Task, error)

NewTask registers a new resource with the given unique name, arguments, and options.

func (*Task) ElementType added in v0.3.0

func (*Task) ElementType() reflect.Type

func (*Task) ToTaskOutput added in v0.3.0

func (i *Task) ToTaskOutput() TaskOutput

func (*Task) ToTaskOutputWithContext added in v0.3.0

func (i *Task) ToTaskOutputWithContext(ctx context.Context) TaskOutput

type TaskArgs added in v0.3.0

type TaskArgs struct {
	// HTTP request that is sent to the App Engine app handler. An App Engine task is a task that has AppEngineHttpRequest set.
	AppEngineHttpRequest AppEngineHttpRequestPtrInput
	// The deadline for requests sent to the worker. If the worker does not respond by this deadline then the request is cancelled and the attempt is marked as a `DEADLINE_EXCEEDED` failure. Cloud Tasks will retry the task according to the RetryConfig. Note that when the request is cancelled, Cloud Tasks will stop listening for the response, but whether the worker stops processing depends on the worker. For example, if the worker is stuck, it may not react to cancelled requests. The default and maximum values depend on the type of request: * For HTTP tasks, the default is 10 minutes. The deadline must be in the interval [15 seconds, 30 minutes]. * For App Engine tasks, 0 indicates that the request has the default deadline. The default deadline depends on the [scaling type](https://cloud.google.com/appengine/docs/standard/go/how-instances-are-managed#instance_scaling) of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. Regardless of the task's `dispatch_deadline`, the app handler will not run for longer than than the service's timeout. We recommend setting the `dispatch_deadline` to at most a few seconds more than the app handler's timeout. For more information see [Timeouts](https://cloud.google.com/tasks/docs/creating-appengine-handlers#timeouts). `dispatch_deadline` will be truncated to the nearest millisecond. The deadline is an approximate deadline.
	DispatchDeadline pulumi.StringPtrInput
	// HTTP request that is sent to the task's target. An HTTP task is a task that has HttpRequest set.
	HttpRequest HttpRequestPtrInput
	Location    pulumi.StringPtrInput
	// Optionally caller-specified in CreateTask. The task name. The task name must have the following format: `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` * `PROJECT_ID` can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see [Identifying projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the task's location. The list of available locations can be obtained by calling ListLocations. For more information, see https://cloud.google.com/about/locations/. * `QUEUE_ID` can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters. * `TASK_ID` can contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
	Name    pulumi.StringPtrInput
	Project pulumi.StringPtrInput
	// Pull Message contained in a task in a PULL queue type. This payload type cannot be explicitly set through Cloud Tasks API. Its purpose, currently is to provide backward compatibility with App Engine Task Queue [pull](https://cloud.google.com/appengine/docs/standard/java/taskqueue/pull/) queues to provide a way to inspect contents of pull tasks through the CloudTasks.GetTask.
	PullMessage PullMessagePtrInput
	QueueId     pulumi.StringInput
	// The response_view specifies which subset of the Task will be returned. By default response_view is BASIC; not all information is retrieved by default because some data, such as payloads, might be desirable to return only when needed because of its large size or because of the sensitivity of data that it contains. Authorization for FULL requires `cloudtasks.tasks.fullView` [Google IAM](https://cloud.google.com/iam/) permission on the Task resource.
	ResponseView TaskResponseViewPtrInput
	// The time when the task is scheduled to be attempted. For App Engine queues, this is when the task will be attempted or retried. `schedule_time` will be truncated to the nearest microsecond.
	ScheduleTime pulumi.StringPtrInput
}

The set of arguments for constructing a Task resource.

func (TaskArgs) ElementType added in v0.3.0

func (TaskArgs) ElementType() reflect.Type

type TaskInput added in v0.3.0

type TaskInput interface {
	pulumi.Input

	ToTaskOutput() TaskOutput
	ToTaskOutputWithContext(ctx context.Context) TaskOutput
}

type TaskOutput added in v0.3.0

type TaskOutput struct{ *pulumi.OutputState }

func (TaskOutput) ElementType added in v0.3.0

func (TaskOutput) ElementType() reflect.Type

func (TaskOutput) ToTaskOutput added in v0.3.0

func (o TaskOutput) ToTaskOutput() TaskOutput

func (TaskOutput) ToTaskOutputWithContext added in v0.3.0

func (o TaskOutput) ToTaskOutputWithContext(ctx context.Context) TaskOutput

type TaskResponseView added in v0.4.0

type TaskResponseView string

The response_view specifies which subset of the Task will be returned. By default response_view is BASIC; not all information is retrieved by default because some data, such as payloads, might be desirable to return only when needed because of its large size or because of the sensitivity of data that it contains. Authorization for FULL requires `cloudtasks.tasks.fullView` [Google IAM](https://cloud.google.com/iam/) permission on the Task resource.

func (TaskResponseView) ElementType added in v0.4.0

func (TaskResponseView) ElementType() reflect.Type

func (TaskResponseView) ToStringOutput added in v0.4.0

func (e TaskResponseView) ToStringOutput() pulumi.StringOutput

func (TaskResponseView) ToStringOutputWithContext added in v0.4.0

func (e TaskResponseView) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (TaskResponseView) ToStringPtrOutput added in v0.4.0

func (e TaskResponseView) ToStringPtrOutput() pulumi.StringPtrOutput

func (TaskResponseView) ToStringPtrOutputWithContext added in v0.4.0

func (e TaskResponseView) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

func (TaskResponseView) ToTaskResponseViewOutput added in v0.6.0

func (e TaskResponseView) ToTaskResponseViewOutput() TaskResponseViewOutput

func (TaskResponseView) ToTaskResponseViewOutputWithContext added in v0.6.0

func (e TaskResponseView) ToTaskResponseViewOutputWithContext(ctx context.Context) TaskResponseViewOutput

func (TaskResponseView) ToTaskResponseViewPtrOutput added in v0.6.0

func (e TaskResponseView) ToTaskResponseViewPtrOutput() TaskResponseViewPtrOutput

func (TaskResponseView) ToTaskResponseViewPtrOutputWithContext added in v0.6.0

func (e TaskResponseView) ToTaskResponseViewPtrOutputWithContext(ctx context.Context) TaskResponseViewPtrOutput

type TaskResponseViewInput added in v0.6.0

type TaskResponseViewInput interface {
	pulumi.Input

	ToTaskResponseViewOutput() TaskResponseViewOutput
	ToTaskResponseViewOutputWithContext(context.Context) TaskResponseViewOutput
}

TaskResponseViewInput is an input type that accepts TaskResponseViewArgs and TaskResponseViewOutput values. You can construct a concrete instance of `TaskResponseViewInput` via:

TaskResponseViewArgs{...}

type TaskResponseViewOutput added in v0.6.0

type TaskResponseViewOutput struct{ *pulumi.OutputState }

func (TaskResponseViewOutput) ElementType added in v0.6.0

func (TaskResponseViewOutput) ElementType() reflect.Type

func (TaskResponseViewOutput) ToStringOutput added in v0.6.0

func (o TaskResponseViewOutput) ToStringOutput() pulumi.StringOutput

func (TaskResponseViewOutput) ToStringOutputWithContext added in v0.6.0

func (o TaskResponseViewOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (TaskResponseViewOutput) ToStringPtrOutput added in v0.6.0

func (o TaskResponseViewOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (TaskResponseViewOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o TaskResponseViewOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

func (TaskResponseViewOutput) ToTaskResponseViewOutput added in v0.6.0

func (o TaskResponseViewOutput) ToTaskResponseViewOutput() TaskResponseViewOutput

func (TaskResponseViewOutput) ToTaskResponseViewOutputWithContext added in v0.6.0

func (o TaskResponseViewOutput) ToTaskResponseViewOutputWithContext(ctx context.Context) TaskResponseViewOutput

func (TaskResponseViewOutput) ToTaskResponseViewPtrOutput added in v0.6.0

func (o TaskResponseViewOutput) ToTaskResponseViewPtrOutput() TaskResponseViewPtrOutput

func (TaskResponseViewOutput) ToTaskResponseViewPtrOutputWithContext added in v0.6.0

func (o TaskResponseViewOutput) ToTaskResponseViewPtrOutputWithContext(ctx context.Context) TaskResponseViewPtrOutput

type TaskResponseViewPtrInput added in v0.6.0

type TaskResponseViewPtrInput interface {
	pulumi.Input

	ToTaskResponseViewPtrOutput() TaskResponseViewPtrOutput
	ToTaskResponseViewPtrOutputWithContext(context.Context) TaskResponseViewPtrOutput
}

func TaskResponseViewPtr added in v0.6.0

func TaskResponseViewPtr(v string) TaskResponseViewPtrInput

type TaskResponseViewPtrOutput added in v0.6.0

type TaskResponseViewPtrOutput struct{ *pulumi.OutputState }

func (TaskResponseViewPtrOutput) Elem added in v0.6.0

func (TaskResponseViewPtrOutput) ElementType added in v0.6.0

func (TaskResponseViewPtrOutput) ElementType() reflect.Type

func (TaskResponseViewPtrOutput) ToStringPtrOutput added in v0.6.0

func (o TaskResponseViewPtrOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (TaskResponseViewPtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o TaskResponseViewPtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

func (TaskResponseViewPtrOutput) ToTaskResponseViewPtrOutput added in v0.6.0

func (o TaskResponseViewPtrOutput) ToTaskResponseViewPtrOutput() TaskResponseViewPtrOutput

func (TaskResponseViewPtrOutput) ToTaskResponseViewPtrOutputWithContext added in v0.6.0

func (o TaskResponseViewPtrOutput) ToTaskResponseViewPtrOutputWithContext(ctx context.Context) TaskResponseViewPtrOutput

type TaskState added in v0.3.0

type TaskState struct {
}

func (TaskState) ElementType added in v0.3.0

func (TaskState) ElementType() reflect.Type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL