166 lines
3.4 KiB
PHP
Executable File
166 lines
3.4 KiB
PHP
Executable File
<?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\CloudRun;
|
|
|
|
class GoogleCloudRunV2TaskTemplate extends \Google\Collection
|
|
{
|
|
protected $collection_key = 'volumes';
|
|
protected $containersType = GoogleCloudRunV2Container::class;
|
|
protected $containersDataType = 'array';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $encryptionKey;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $executionEnvironment;
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $maxRetries;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $serviceAccount;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $timeout;
|
|
protected $volumesType = GoogleCloudRunV2Volume::class;
|
|
protected $volumesDataType = 'array';
|
|
protected $vpcAccessType = GoogleCloudRunV2VpcAccess::class;
|
|
protected $vpcAccessDataType = '';
|
|
|
|
/**
|
|
* @param GoogleCloudRunV2Container[]
|
|
*/
|
|
public function setContainers($containers)
|
|
{
|
|
$this->containers = $containers;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2Container[]
|
|
*/
|
|
public function getContainers()
|
|
{
|
|
return $this->containers;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setEncryptionKey($encryptionKey)
|
|
{
|
|
$this->encryptionKey = $encryptionKey;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEncryptionKey()
|
|
{
|
|
return $this->encryptionKey;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setExecutionEnvironment($executionEnvironment)
|
|
{
|
|
$this->executionEnvironment = $executionEnvironment;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getExecutionEnvironment()
|
|
{
|
|
return $this->executionEnvironment;
|
|
}
|
|
/**
|
|
* @param int
|
|
*/
|
|
public function setMaxRetries($maxRetries)
|
|
{
|
|
$this->maxRetries = $maxRetries;
|
|
}
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getMaxRetries()
|
|
{
|
|
return $this->maxRetries;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setServiceAccount($serviceAccount)
|
|
{
|
|
$this->serviceAccount = $serviceAccount;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getServiceAccount()
|
|
{
|
|
return $this->serviceAccount;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setTimeout($timeout)
|
|
{
|
|
$this->timeout = $timeout;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTimeout()
|
|
{
|
|
return $this->timeout;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2Volume[]
|
|
*/
|
|
public function setVolumes($volumes)
|
|
{
|
|
$this->volumes = $volumes;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2Volume[]
|
|
*/
|
|
public function getVolumes()
|
|
{
|
|
return $this->volumes;
|
|
}
|
|
/**
|
|
* @param GoogleCloudRunV2VpcAccess
|
|
*/
|
|
public function setVpcAccess(GoogleCloudRunV2VpcAccess $vpcAccess)
|
|
{
|
|
$this->vpcAccess = $vpcAccess;
|
|
}
|
|
/**
|
|
* @return GoogleCloudRunV2VpcAccess
|
|
*/
|
|
public function getVpcAccess()
|
|
{
|
|
return $this->vpcAccess;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(GoogleCloudRunV2TaskTemplate::class, 'Google_Service_CloudRun_GoogleCloudRunV2TaskTemplate');
|