JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "GoogleCloudDataplexV1DataAttribute.php"
Full Path: /home/u735268861/domains/palsarh.in/public_html/vendor/google/apiclient-services/src/CloudDataplex/GoogleCloudDataplexV1DataAttribute.php
File size: 7.19 KB
MIME-type: text/x-php
Charset: utf-8
<?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\CloudDataplex;
class GoogleCloudDataplexV1DataAttribute extends \Google\Model
{
/**
* Output only. The number of child attributes present for this attribute.
*
* @var int
*/
public $attributeCount;
/**
* Output only. The time when the DataAttribute was created.
*
* @var string
*/
public $createTime;
protected $dataAccessSpecType = GoogleCloudDataplexV1DataAccessSpec::class;
protected $dataAccessSpecDataType = '';
/**
* Optional. Description of the DataAttribute.
*
* @var string
*/
public $description;
/**
* Optional. User friendly display name.
*
* @var string
*/
public $displayName;
/**
* This checksum is computed by the server based on the value of other fields,
* and may be sent on update and delete requests to ensure the client has an
* up-to-date value before proceeding.
*
* @var string
*/
public $etag;
/**
* Optional. User-defined labels for the DataAttribute.
*
* @var string[]
*/
public $labels;
/**
* Output only. The relative resource name of the dataAttribute, of the form:
* projects/{project_number}/locations/{location_id}/dataTaxonomies/{dataTaxon
* omy}/attributes/{data_attribute_id}.
*
* @var string
*/
public $name;
/**
* Optional. The ID of the parent DataAttribute resource, should belong to the
* same data taxonomy. Circular dependency in parent chain is not valid.
* Maximum depth of the hierarchy allowed is 4. a -> b -> c -> d -> e, depth =
* 4
*
* @var string
*/
public $parentId;
protected $resourceAccessSpecType = GoogleCloudDataplexV1ResourceAccessSpec::class;
protected $resourceAccessSpecDataType = '';
/**
* Output only. System generated globally unique ID for the DataAttribute.
* This ID will be different if the DataAttribute is deleted and re-created
* with the same name.
*
* @var string
*/
public $uid;
/**
* Output only. The time when the DataAttribute was last updated.
*
* @var string
*/
public $updateTime;
/**
* Output only. The number of child attributes present for this attribute.
*
* @param int $attributeCount
*/
public function setAttributeCount($attributeCount)
{
$this->attributeCount = $attributeCount;
}
/**
* @return int
*/
public function getAttributeCount()
{
return $this->attributeCount;
}
/**
* Output only. The time when the DataAttribute was created.
*
* @param string $createTime
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* Optional. Specified when applied to data stored on the resource (eg: rows,
* columns in BigQuery Tables).
*
* @param GoogleCloudDataplexV1DataAccessSpec $dataAccessSpec
*/
public function setDataAccessSpec(GoogleCloudDataplexV1DataAccessSpec $dataAccessSpec)
{
$this->dataAccessSpec = $dataAccessSpec;
}
/**
* @return GoogleCloudDataplexV1DataAccessSpec
*/
public function getDataAccessSpec()
{
return $this->dataAccessSpec;
}
/**
* Optional. Description of the DataAttribute.
*
* @param string $description
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* Optional. User friendly display name.
*
* @param string $displayName
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
/**
* This checksum is computed by the server based on the value of other fields,
* and may be sent on update and delete requests to ensure the client has an
* up-to-date value before proceeding.
*
* @param string $etag
*/
public function setEtag($etag)
{
$this->etag = $etag;
}
/**
* @return string
*/
public function getEtag()
{
return $this->etag;
}
/**
* Optional. User-defined labels for the DataAttribute.
*
* @param string[] $labels
*/
public function setLabels($labels)
{
$this->labels = $labels;
}
/**
* @return string[]
*/
public function getLabels()
{
return $this->labels;
}
/**
* Output only. The relative resource name of the dataAttribute, of the form:
* projects/{project_number}/locations/{location_id}/dataTaxonomies/{dataTaxon
* omy}/attributes/{data_attribute_id}.
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Optional. The ID of the parent DataAttribute resource, should belong to the
* same data taxonomy. Circular dependency in parent chain is not valid.
* Maximum depth of the hierarchy allowed is 4. a -> b -> c -> d -> e, depth =
* 4
*
* @param string $parentId
*/
public function setParentId($parentId)
{
$this->parentId = $parentId;
}
/**
* @return string
*/
public function getParentId()
{
return $this->parentId;
}
/**
* Optional. Specified when applied to a resource (eg: Cloud Storage bucket,
* BigQuery dataset, BigQuery table).
*
* @param GoogleCloudDataplexV1ResourceAccessSpec $resourceAccessSpec
*/
public function setResourceAccessSpec(GoogleCloudDataplexV1ResourceAccessSpec $resourceAccessSpec)
{
$this->resourceAccessSpec = $resourceAccessSpec;
}
/**
* @return GoogleCloudDataplexV1ResourceAccessSpec
*/
public function getResourceAccessSpec()
{
return $this->resourceAccessSpec;
}
/**
* Output only. System generated globally unique ID for the DataAttribute.
* This ID will be different if the DataAttribute is deleted and re-created
* with the same name.
*
* @param string $uid
*/
public function setUid($uid)
{
$this->uid = $uid;
}
/**
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Output only. The time when the DataAttribute was last updated.
*
* @param string $updateTime
*/
public function setUpdateTime($updateTime)
{
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdateTime()
{
return $this->updateTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudDataplexV1DataAttribute::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataAttribute');