📄 Source: TenancyUnit.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\ServiceConsumerManagement;
class TenancyUnit extends \Google\Collection
{
protected $collection_key = 'tenantResources';
/**
* Output only. @OutputOnly Cloud resource name of the consumer of this
* service. For example 'projects/123456'.
*
* @var string
*/
public $consumer;
/**
* Output only. @OutputOnly The time this tenancy unit was created.
*
* @var string
*/
public $createTime;
/**
* Globally unique identifier of this tenancy unit
* "services/{service}/{collection id}/{resource id}/tenancyUnits/{unit}"
*
* @var string
*/
public $name;
/**
* Output only. Google Cloud API name of the managed service owning this
* tenancy unit. For example 'serviceconsumermanagement.googleapis.com'.
*
* @var string
*/
public $service;
protected $tenantResourcesType = TenantResource::class;
protected $tenantResourcesDataType = 'array';
/**
* Output only. @OutputOnly Cloud resource name of the consumer of this
* service. For example 'projects/123456'.
*
* @param string $consumer
*/
public function setConsumer($consumer)
{
$this->consumer = $consumer;
}
/**
* @return string
*/
public function getConsumer()
{
return $this->consumer;
}
/**
* Output only. @OutputOnly The time this tenancy unit was created.
*
* @param string $createTime
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* Globally unique identifier of this tenancy unit
* "services/{service}/{collection id}/{resource id}/tenancyUnits/{unit}"
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Output only. Google Cloud API name of the managed service owning this
* tenancy unit. For example 'serviceconsumermanagement.googleapis.com'.
*
* @param string $service
*/
public function setService($service)
{
$this->service = $service;
}
/**
* @return string
*/
public function getService()
{
return $this->service;
}
/**
* Resources constituting the tenancy unit. There can be at most 512 tenant
* resources in a tenancy unit.
*
* @param TenantResource[] $tenantResources
*/
public function setTenantResources($tenantResources)
{
$this->tenantResources = $tenantResources;
}
/**
* @return TenantResource[]
*/
public function getTenantResources()
{
return $this->tenantResources;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(TenancyUnit::class, 'Google_Service_ServiceConsumerManagement_TenancyUnit');
← Back