activeSchemaVersion = $activeSchemaVersion; } /** * @return string */ public function getActiveSchemaVersion() { return $this->activeSchemaVersion; } /** * Output only. The time the processor was created. * * @param string $createTime */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * The default processor version. * * @param string $defaultProcessorVersion */ public function setDefaultProcessorVersion($defaultProcessorVersion) { $this->defaultProcessorVersion = $defaultProcessorVersion; } /** * @return string */ public function getDefaultProcessorVersion() { return $this->defaultProcessorVersion; } /** * The display name of the processor. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * The [KMS key](https://cloud.google.com/security-key-management) used for * encryption and decryption in CMEK scenarios. * * @param string $kmsKeyName */ public function setKmsKeyName($kmsKeyName) { $this->kmsKeyName = $kmsKeyName; } /** * @return string */ public function getKmsKeyName() { return $this->kmsKeyName; } /** * Output only. Immutable. The resource name of the processor. Format: * `projects/{project}/locations/{location}/processors/{processor}` * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. Immutable. The http endpoint that can be called to invoke * processing. * * @param string $processEndpoint */ public function setProcessEndpoint($processEndpoint) { $this->processEndpoint = $processEndpoint; } /** * @return string */ public function getProcessEndpoint() { return $this->processEndpoint; } /** * Output only. The processor version aliases. * * @param GoogleCloudDocumentaiV1ProcessorVersionAlias[] $processorVersionAliases */ public function setProcessorVersionAliases($processorVersionAliases) { $this->processorVersionAliases = $processorVersionAliases; } /** * @return GoogleCloudDocumentaiV1ProcessorVersionAlias[] */ public function getProcessorVersionAliases() { return $this->processorVersionAliases; } /** * Output only. Reserved for future use. * * @param bool $satisfiesPzi */ public function setSatisfiesPzi($satisfiesPzi) { $this->satisfiesPzi = $satisfiesPzi; } /** * @return bool */ public function getSatisfiesPzi() { return $this->satisfiesPzi; } /** * Output only. Reserved for future use. * * @param bool $satisfiesPzs */ public function setSatisfiesPzs($satisfiesPzs) { $this->satisfiesPzs = $satisfiesPzs; } /** * @return bool */ public function getSatisfiesPzs() { return $this->satisfiesPzs; } /** * Output only. The state of the processor. * * Accepted values: STATE_UNSPECIFIED, ENABLED, DISABLED, ENABLING, DISABLING, * CREATING, FAILED, DELETING * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * The processor type, such as: `OCR_PROCESSOR`, `INVOICE_PROCESSOR`. To get a * list of processor types, see FetchProcessorTypes. * * @param string $type */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDocumentaiV1Processor::class, 'Google_Service_Document_GoogleCloudDocumentaiV1Processor');