kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Content of the configuration. The underlying schema should be defined by * Aspect owners as protobuf message under `google/api/configaspects/proto`. * * @param array[] $spec */ public function setSpec($spec) { $this->spec = $spec; } /** * @return array[] */ public function getSpec() { return $this->spec; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Aspect::class, 'Google_Service_ServiceNetworking_Aspect');