115 lines
2.3 KiB
PHP
115 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* 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
|
|
*
|
|
* http://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.
|
|
*/
|
|
|
|
namespace Google\Service\Compute;
|
|
|
|
class NotificationEndpointGrpcSettings extends \Google\Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $authority;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $endpoint;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $payloadName;
|
|
protected $resendIntervalType = Duration::class;
|
|
protected $resendIntervalDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $retryDurationSec;
|
|
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setAuthority($authority)
|
|
{
|
|
$this->authority = $authority;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getAuthority()
|
|
{
|
|
return $this->authority;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setEndpoint($endpoint)
|
|
{
|
|
$this->endpoint = $endpoint;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEndpoint()
|
|
{
|
|
return $this->endpoint;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setPayloadName($payloadName)
|
|
{
|
|
$this->payloadName = $payloadName;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getPayloadName()
|
|
{
|
|
return $this->payloadName;
|
|
}
|
|
/**
|
|
* @param Duration
|
|
*/
|
|
public function setResendInterval(Duration $resendInterval)
|
|
{
|
|
$this->resendInterval = $resendInterval;
|
|
}
|
|
/**
|
|
* @return Duration
|
|
*/
|
|
public function getResendInterval()
|
|
{
|
|
return $this->resendInterval;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setRetryDurationSec($retryDurationSec)
|
|
{
|
|
$this->retryDurationSec = $retryDurationSec;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getRetryDurationSec()
|
|
{
|
|
return $this->retryDurationSec;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(NotificationEndpointGrpcSettings::class, 'Google_Service_Compute_NotificationEndpointGrpcSettings');
|