
com.google.cloud.compute.v1.NotificationEndpointGrpcSettingsOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/compute/v1/compute.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.compute.v1;
public interface NotificationEndpointGrpcSettingsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.NotificationEndpointGrpcSettings)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* 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
*
*
* optional string authority = 401868611;
*
* @return Whether the authority field is set.
*/
boolean hasAuthority();
/**
*
*
*
* 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
*
*
* optional string authority = 401868611;
*
* @return The authority.
*/
java.lang.String getAuthority();
/**
*
*
*
* 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
*
*
* optional string authority = 401868611;
*
* @return The bytes for authority.
*/
com.google.protobuf.ByteString getAuthorityBytes();
/**
*
*
*
* Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
*
*
* optional string endpoint = 130489749;
*
* @return Whether the endpoint field is set.
*/
boolean hasEndpoint();
/**
*
*
*
* Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
*
*
* optional string endpoint = 130489749;
*
* @return The endpoint.
*/
java.lang.String getEndpoint();
/**
*
*
*
* Endpoint to which gRPC notifications are sent. This must be a valid gRPCLB DNS name.
*
*
* optional string endpoint = 130489749;
*
* @return The bytes for endpoint.
*/
com.google.protobuf.ByteString getEndpointBytes();
/**
*
*
*
* Optional. If specified, this field is used to populate the "name" field in gRPC requests.
*
*
* optional string payload_name = 300358300;
*
* @return Whether the payloadName field is set.
*/
boolean hasPayloadName();
/**
*
*
*
* Optional. If specified, this field is used to populate the "name" field in gRPC requests.
*
*
* optional string payload_name = 300358300;
*
* @return The payloadName.
*/
java.lang.String getPayloadName();
/**
*
*
*
* Optional. If specified, this field is used to populate the "name" field in gRPC requests.
*
*
* optional string payload_name = 300358300;
*
* @return The bytes for payloadName.
*/
com.google.protobuf.ByteString getPayloadNameBytes();
/**
*
*
*
* 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.
*
*
* optional .google.cloud.compute.v1.Duration resend_interval = 478288969;
*
* @return Whether the resendInterval field is set.
*/
boolean hasResendInterval();
/**
*
*
*
* 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.
*
*
* optional .google.cloud.compute.v1.Duration resend_interval = 478288969;
*
* @return The resendInterval.
*/
com.google.cloud.compute.v1.Duration getResendInterval();
/**
*
*
*
* 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.
*
*
* optional .google.cloud.compute.v1.Duration resend_interval = 478288969;
*/
com.google.cloud.compute.v1.DurationOrBuilder getResendIntervalOrBuilder();
/**
*
*
*
* 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.
*
*
* optional uint32 retry_duration_sec = 115681117;
*
* @return Whether the retryDurationSec field is set.
*/
boolean hasRetryDurationSec();
/**
*
*
*
* 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.
*
*
* optional uint32 retry_duration_sec = 115681117;
*
* @return The retryDurationSec.
*/
int getRetryDurationSec();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy