arguments = $arguments; } /** * @return string */ public function getArguments() { return $this->arguments; } /** * Required. The recovered Dockerfile directive used to construct this layer. * See https://docs.docker.com/engine/reference/builder/ for more information. * * @param string $directive */ public function setDirective($directive) { $this->directive = $directive; } /** * @return string */ public function getDirective() { return $this->directive; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Layer::class, 'Google_Service_OnDemandScanning_Layer');