📄 Source: GoogleCloudRunV2Volume.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\CloudRun;
class GoogleCloudRunV2Volume extends \Google\Model
{
protected $cloudSqlInstanceType = GoogleCloudRunV2CloudSqlInstance::class;
protected $cloudSqlInstanceDataType = '';
protected $emptyDirType = GoogleCloudRunV2EmptyDirVolumeSource::class;
protected $emptyDirDataType = '';
protected $gcsType = GoogleCloudRunV2GCSVolumeSource::class;
protected $gcsDataType = '';
/**
* Required. Volume's name.
*
* @var string
*/
public $name;
protected $nfsType = GoogleCloudRunV2NFSVolumeSource::class;
protected $nfsDataType = '';
protected $secretType = GoogleCloudRunV2SecretVolumeSource::class;
protected $secretDataType = '';
/**
* For Cloud SQL volumes, contains the specific instances that should be
* mounted. Visit https://cloud.google.com/sql/docs/mysql/connect-run for more
* information on how to connect Cloud SQL and Cloud Run.
*
* @param GoogleCloudRunV2CloudSqlInstance $cloudSqlInstance
*/
public function setCloudSqlInstance(GoogleCloudRunV2CloudSqlInstance $cloudSqlInstance)
{
$this->cloudSqlInstance = $cloudSqlInstance;
}
/**
* @return GoogleCloudRunV2CloudSqlInstance
*/
public function getCloudSqlInstance()
{
return $this->cloudSqlInstance;
}
/**
* Ephemeral storage used as a shared volume.
*
* @param GoogleCloudRunV2EmptyDirVolumeSource $emptyDir
*/
public function setEmptyDir(GoogleCloudRunV2EmptyDirVolumeSource $emptyDir)
{
$this->emptyDir = $emptyDir;
}
/**
* @return GoogleCloudRunV2EmptyDirVolumeSource
*/
public function getEmptyDir()
{
return $this->emptyDir;
}
/**
* Persistent storage backed by a Google Cloud Storage bucket.
*
* @param GoogleCloudRunV2GCSVolumeSource $gcs
*/
public function setGcs(GoogleCloudRunV2GCSVolumeSource $gcs)
{
$this->gcs = $gcs;
}
/**
* @return GoogleCloudRunV2GCSVolumeSource
*/
public function getGcs()
{
return $this->gcs;
}
/**
* Required. Volume's name.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* For NFS Voumes, contains the path to the nfs Volume
*
* @param GoogleCloudRunV2NFSVolumeSource $nfs
*/
public function setNfs(GoogleCloudRunV2NFSVolumeSource $nfs)
{
$this->nfs = $nfs;
}
/**
* @return GoogleCloudRunV2NFSVolumeSource
*/
public function getNfs()
{
return $this->nfs;
}
/**
* Secret represents a secret that should populate this volume.
*
* @param GoogleCloudRunV2SecretVolumeSource $secret
*/
public function setSecret(GoogleCloudRunV2SecretVolumeSource $secret)
{
$this->secret = $secret;
}
/**
* @return GoogleCloudRunV2SecretVolumeSource
*/
public function getSecret()
{
return $this->secret;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudRunV2Volume::class, 'Google_Service_CloudRun_GoogleCloudRunV2Volume');
← Back