📄 Source: InfoTypeTransformation.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\CloudHealthcare;
class InfoTypeTransformation extends \Google\Collection
{
protected $collection_key = 'infoTypes';
protected $characterMaskConfigType = CharacterMaskConfig::class;
protected $characterMaskConfigDataType = '';
protected $cryptoHashConfigType = CryptoHashConfig::class;
protected $cryptoHashConfigDataType = '';
protected $dateShiftConfigType = DateShiftConfig::class;
protected $dateShiftConfigDataType = '';
/**
* Optional. InfoTypes to apply this transformation to. If this is not
* specified, the transformation applies to any info_type.
*
* @var string[]
*/
public $infoTypes;
protected $redactConfigType = RedactConfig::class;
protected $redactConfigDataType = '';
protected $replaceWithInfoTypeConfigType = ReplaceWithInfoTypeConfig::class;
protected $replaceWithInfoTypeConfigDataType = '';
/**
* Config for character mask.
*
* @param CharacterMaskConfig $characterMaskConfig
*/
public function setCharacterMaskConfig(CharacterMaskConfig $characterMaskConfig)
{
$this->characterMaskConfig = $characterMaskConfig;
}
/**
* @return CharacterMaskConfig
*/
public function getCharacterMaskConfig()
{
return $this->characterMaskConfig;
}
/**
* Config for crypto hash.
*
* @param CryptoHashConfig $cryptoHashConfig
*/
public function setCryptoHashConfig(CryptoHashConfig $cryptoHashConfig)
{
$this->cryptoHashConfig = $cryptoHashConfig;
}
/**
* @return CryptoHashConfig
*/
public function getCryptoHashConfig()
{
return $this->cryptoHashConfig;
}
/**
* Config for date shift.
*
* @param DateShiftConfig $dateShiftConfig
*/
public function setDateShiftConfig(DateShiftConfig $dateShiftConfig)
{
$this->dateShiftConfig = $dateShiftConfig;
}
/**
* @return DateShiftConfig
*/
public function getDateShiftConfig()
{
return $this->dateShiftConfig;
}
/**
* Optional. InfoTypes to apply this transformation to. If this is not
* specified, the transformation applies to any info_type.
*
* @param string[] $infoTypes
*/
public function setInfoTypes($infoTypes)
{
$this->infoTypes = $infoTypes;
}
/**
* @return string[]
*/
public function getInfoTypes()
{
return $this->infoTypes;
}
/**
* Config for text redaction.
*
* @param RedactConfig $redactConfig
*/
public function setRedactConfig(RedactConfig $redactConfig)
{
$this->redactConfig = $redactConfig;
}
/**
* @return RedactConfig
*/
public function getRedactConfig()
{
return $this->redactConfig;
}
/**
* Config for replace with InfoType.
*
* @param ReplaceWithInfoTypeConfig $replaceWithInfoTypeConfig
*/
public function setReplaceWithInfoTypeConfig(ReplaceWithInfoTypeConfig $replaceWithInfoTypeConfig)
{
$this->replaceWithInfoTypeConfig = $replaceWithInfoTypeConfig;
}
/**
* @return ReplaceWithInfoTypeConfig
*/
public function getReplaceWithInfoTypeConfig()
{
return $this->replaceWithInfoTypeConfig;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(InfoTypeTransformation::class, 'Google_Service_CloudHealthcare_InfoTypeTransformation');
← Back