Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/ServiceConsumerManagement/TenantResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@ class TenantResource extends \Google\Model
* @var string
*/
public $resource;
/**
* Output only. The resource name of the tenant project from which this active
* regional tenant project was migrated. This field is only set for active
* regional migrated mapping tenant projects. Format: `services//{collection_i
* d}/{RESOURCE_ID}/locations/{LOCATION}/tenantProjects/{TENANT_ID}`.
*
* @var string
*/
public $sourceTenantProject;
/**
* Status of tenant resource.
*
Expand Down Expand Up @@ -110,6 +119,25 @@ public function getResource()
{
return $this->resource;
}
/**
* Output only. The resource name of the tenant project from which this active
* regional tenant project was migrated. This field is only set for active
* regional migrated mapping tenant projects. Format: `services//{collection_i
* d}/{RESOURCE_ID}/locations/{LOCATION}/tenantProjects/{TENANT_ID}`.
*
* @param string $sourceTenantProject
*/
public function setSourceTenantProject($sourceTenantProject)
{
$this->sourceTenantProject = $sourceTenantProject;
}
/**
* @return string
*/
public function getSourceTenantProject()
{
return $this->sourceTenantProject;
}
/**
* Status of tenant resource.
*
Expand Down
Loading