1. Packages
  2. Google Cloud Native
  3. API Docs
  4. compute
  5. compute/v1
  6. RegionNotificationEndpoint

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.compute/v1.RegionNotificationEndpoint

Explore with Pulumi AI

Create a NotificationEndpoint in the specified project in the given region using the parameters that are included in the request.

Create RegionNotificationEndpoint Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new RegionNotificationEndpoint(name: string, args: RegionNotificationEndpointArgs, opts?: CustomResourceOptions);
@overload
def RegionNotificationEndpoint(resource_name: str,
                               args: RegionNotificationEndpointArgs,
                               opts: Optional[ResourceOptions] = None)

@overload
def RegionNotificationEndpoint(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               region: Optional[str] = None,
                               description: Optional[str] = None,
                               grpc_settings: Optional[NotificationEndpointGrpcSettingsArgs] = None,
                               name: Optional[str] = None,
                               project: Optional[str] = None,
                               request_id: Optional[str] = None)
func NewRegionNotificationEndpoint(ctx *Context, name string, args RegionNotificationEndpointArgs, opts ...ResourceOption) (*RegionNotificationEndpoint, error)
public RegionNotificationEndpoint(string name, RegionNotificationEndpointArgs args, CustomResourceOptions? opts = null)
public RegionNotificationEndpoint(String name, RegionNotificationEndpointArgs args)
public RegionNotificationEndpoint(String name, RegionNotificationEndpointArgs args, CustomResourceOptions options)
type: google-native:compute/v1:RegionNotificationEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RegionNotificationEndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. RegionNotificationEndpointArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. RegionNotificationEndpointArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RegionNotificationEndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RegionNotificationEndpointArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var exampleregionNotificationEndpointResourceResourceFromComputev1 = new GoogleNative.Compute.V1.RegionNotificationEndpoint("exampleregionNotificationEndpointResourceResourceFromComputev1", new()
{
    Region = "string",
    Description = "string",
    GrpcSettings = new GoogleNative.Compute.V1.Inputs.NotificationEndpointGrpcSettingsArgs
    {
        Authority = "string",
        Endpoint = "string",
        PayloadName = "string",
        ResendInterval = new GoogleNative.Compute.V1.Inputs.DurationArgs
        {
            Nanos = 0,
            Seconds = "string",
        },
        RetryDurationSec = 0,
    },
    Name = "string",
    Project = "string",
    RequestId = "string",
});
Copy
example, err := computev1.NewRegionNotificationEndpoint(ctx, "exampleregionNotificationEndpointResourceResourceFromComputev1", &computev1.RegionNotificationEndpointArgs{
	Region:      pulumi.String("string"),
	Description: pulumi.String("string"),
	GrpcSettings: &compute.NotificationEndpointGrpcSettingsArgs{
		Authority:   pulumi.String("string"),
		Endpoint:    pulumi.String("string"),
		PayloadName: pulumi.String("string"),
		ResendInterval: &compute.DurationArgs{
			Nanos:   pulumi.Int(0),
			Seconds: pulumi.String("string"),
		},
		RetryDurationSec: pulumi.Int(0),
	},
	Name:      pulumi.String("string"),
	Project:   pulumi.String("string"),
	RequestId: pulumi.String("string"),
})
Copy
var exampleregionNotificationEndpointResourceResourceFromComputev1 = new RegionNotificationEndpoint("exampleregionNotificationEndpointResourceResourceFromComputev1", RegionNotificationEndpointArgs.builder()
    .region("string")
    .description("string")
    .grpcSettings(NotificationEndpointGrpcSettingsArgs.builder()
        .authority("string")
        .endpoint("string")
        .payloadName("string")
        .resendInterval(DurationArgs.builder()
            .nanos(0)
            .seconds("string")
            .build())
        .retryDurationSec(0)
        .build())
    .name("string")
    .project("string")
    .requestId("string")
    .build());
Copy
exampleregion_notification_endpoint_resource_resource_from_computev1 = google_native.compute.v1.RegionNotificationEndpoint("exampleregionNotificationEndpointResourceResourceFromComputev1",
    region="string",
    description="string",
    grpc_settings={
        "authority": "string",
        "endpoint": "string",
        "payload_name": "string",
        "resend_interval": {
            "nanos": 0,
            "seconds": "string",
        },
        "retry_duration_sec": 0,
    },
    name="string",
    project="string",
    request_id="string")
Copy
const exampleregionNotificationEndpointResourceResourceFromComputev1 = new google_native.compute.v1.RegionNotificationEndpoint("exampleregionNotificationEndpointResourceResourceFromComputev1", {
    region: "string",
    description: "string",
    grpcSettings: {
        authority: "string",
        endpoint: "string",
        payloadName: "string",
        resendInterval: {
            nanos: 0,
            seconds: "string",
        },
        retryDurationSec: 0,
    },
    name: "string",
    project: "string",
    requestId: "string",
});
Copy
type: google-native:compute/v1:RegionNotificationEndpoint
properties:
    description: string
    grpcSettings:
        authority: string
        endpoint: string
        payloadName: string
        resendInterval:
            nanos: 0
            seconds: string
        retryDurationSec: 0
    name: string
    project: string
    region: string
    requestId: string
Copy

RegionNotificationEndpoint Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The RegionNotificationEndpoint resource accepts the following input properties:

Region
This property is required.
Changes to this property will trigger replacement.
string
Description string
An optional description of this resource. Provide this property when you create the resource.
GrpcSettings Pulumi.GoogleNative.Compute.V1.Inputs.NotificationEndpointGrpcSettings
Settings of the gRPC notification endpoint including the endpoint URL and the retry duration.
Name string
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
Project Changes to this property will trigger replacement. string
RequestId string
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
Region
This property is required.
Changes to this property will trigger replacement.
string
Description string
An optional description of this resource. Provide this property when you create the resource.
GrpcSettings NotificationEndpointGrpcSettingsArgs
Settings of the gRPC notification endpoint including the endpoint URL and the retry duration.
Name string
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
Project Changes to this property will trigger replacement. string
RequestId string
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
region
This property is required.
Changes to this property will trigger replacement.
String
description String
An optional description of this resource. Provide this property when you create the resource.
grpcSettings NotificationEndpointGrpcSettings
Settings of the gRPC notification endpoint including the endpoint URL and the retry duration.
name String
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
project Changes to this property will trigger replacement. String
requestId String
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
region
This property is required.
Changes to this property will trigger replacement.
string
description string
An optional description of this resource. Provide this property when you create the resource.
grpcSettings NotificationEndpointGrpcSettings
Settings of the gRPC notification endpoint including the endpoint URL and the retry duration.
name string
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
project Changes to this property will trigger replacement. string
requestId string
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
region
This property is required.
Changes to this property will trigger replacement.
str
description str
An optional description of this resource. Provide this property when you create the resource.
grpc_settings NotificationEndpointGrpcSettingsArgs
Settings of the gRPC notification endpoint including the endpoint URL and the retry duration.
name str
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
project Changes to this property will trigger replacement. str
request_id str
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
region
This property is required.
Changes to this property will trigger replacement.
String
description String
An optional description of this resource. Provide this property when you create the resource.
grpcSettings Property Map
Settings of the gRPC notification endpoint including the endpoint URL and the retry duration.
name String
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
project Changes to this property will trigger replacement. String
requestId String
An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).

Outputs

All input properties are implicitly available as output properties. Additionally, the RegionNotificationEndpoint resource produces the following output properties:

CreationTimestamp string
Creation timestamp in RFC3339 text format.
Id string
The provider-assigned unique ID for this managed resource.
Kind string
Type of the resource. Always compute#notificationEndpoint for notification endpoints.
SelfLink string
Server-defined URL for the resource.
CreationTimestamp string
Creation timestamp in RFC3339 text format.
Id string
The provider-assigned unique ID for this managed resource.
Kind string
Type of the resource. Always compute#notificationEndpoint for notification endpoints.
SelfLink string
Server-defined URL for the resource.
creationTimestamp String
Creation timestamp in RFC3339 text format.
id String
The provider-assigned unique ID for this managed resource.
kind String
Type of the resource. Always compute#notificationEndpoint for notification endpoints.
selfLink String
Server-defined URL for the resource.
creationTimestamp string
Creation timestamp in RFC3339 text format.
id string
The provider-assigned unique ID for this managed resource.
kind string
Type of the resource. Always compute#notificationEndpoint for notification endpoints.
selfLink string
Server-defined URL for the resource.
creation_timestamp str
Creation timestamp in RFC3339 text format.
id str
The provider-assigned unique ID for this managed resource.
kind str
Type of the resource. Always compute#notificationEndpoint for notification endpoints.
self_link str
Server-defined URL for the resource.
creationTimestamp String
Creation timestamp in RFC3339 text format.
id String
The provider-assigned unique ID for this managed resource.
kind String
Type of the resource. Always compute#notificationEndpoint for notification endpoints.
selfLink String
Server-defined URL for the resource.

Supporting Types

Duration
, DurationArgs

Nanos int
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
Seconds string
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
Nanos int
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
Seconds string
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos Integer
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds String
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos number
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds string
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos int
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds str
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos Number
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds String
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years

DurationResponse
, DurationResponseArgs

Nanos This property is required. int
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
Seconds This property is required. string
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
Nanos This property is required. int
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
Seconds This property is required. string
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos This property is required. Integer
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds This property is required. String
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos This property is required. number
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds This property is required. string
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos This property is required. int
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds This property is required. str
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
nanos This property is required. Number
Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.
seconds This property is required. String
Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years

NotificationEndpointGrpcSettings
, NotificationEndpointGrpcSettingsArgs

Authority string
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
Endpoint string
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
PayloadName string
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
ResendInterval Pulumi.GoogleNative.Compute.V1.Inputs.Duration
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
RetryDurationSec int
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
Authority string
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
Endpoint string
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
PayloadName string
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
ResendInterval Duration
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
RetryDurationSec int
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority String
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint String
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payloadName String
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resendInterval Duration
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retryDurationSec Integer
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority string
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint string
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payloadName string
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resendInterval Duration
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retryDurationSec number
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority str
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint str
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payload_name str
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resend_interval Duration
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retry_duration_sec int
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority String
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint String
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payloadName String
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resendInterval Property Map
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retryDurationSec Number
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.

NotificationEndpointGrpcSettingsResponse
, NotificationEndpointGrpcSettingsResponseArgs

Authority This property is required. string
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
Endpoint This property is required. string
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
PayloadName This property is required. string
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
ResendInterval This property is required. Pulumi.GoogleNative.Compute.V1.Inputs.DurationResponse
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
RetryDurationSec This property is required. int
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
Authority This property is required. string
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
Endpoint This property is required. string
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
PayloadName This property is required. string
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
ResendInterval This property is required. DurationResponse
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
RetryDurationSec This property is required. int
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority This property is required. String
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint This property is required. String
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payloadName This property is required. String
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resendInterval This property is required. DurationResponse
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retryDurationSec This property is required. Integer
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority This property is required. string
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint This property is required. string
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payloadName This property is required. string
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resendInterval This property is required. DurationResponse
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retryDurationSec This property is required. number
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority This property is required. str
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint This property is required. str
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payload_name This property is required. str
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resend_interval This property is required. DurationResponse
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retry_duration_sec This property is required. int
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.
authority This property is required. String
Optional. If specified, this field is used to set the authority header by the sender of notifications. See https://tools.ietf.org/html/rfc7540#section-8.1.2.3
endpoint This property is required. String
Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
payloadName This property is required. String
Optional. If specified, this field is used to populate the "name" field in gRPC requests.
resendInterval This property is required. Property Map
Optional. This field is used to configure how often to send a full update of all non-healthy backends. If unspecified, full updates are not sent. If specified, must be in the range between 600 seconds to 3600 seconds. Nanos are disallowed. Can only be set for regional notification endpoints.
retryDurationSec This property is required. Number
How much time (in seconds) is spent attempting notification retries until a successful response is received. Default is 30s. Limit is 20m (1200s). Must be a positive number.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0