authenticationTokenSecretVersion = $authenticationTokenSecretVersion; } /** * @return string */ public function getAuthenticationTokenSecretVersion() { return $this->authenticationTokenSecretVersion; } /** * @param string */ public function setDefaultBranch($defaultBranch) { $this->defaultBranch = $defaultBranch; } /** * @return string */ public function getDefaultBranch() { return $this->defaultBranch; } /** * @param SshAuthenticationConfig */ public function setSshAuthenticationConfig(SshAuthenticationConfig $sshAuthenticationConfig) { $this->sshAuthenticationConfig = $sshAuthenticationConfig; } /** * @return SshAuthenticationConfig */ public function getSshAuthenticationConfig() { return $this->sshAuthenticationConfig; } /** * @param string */ public function setTokenStatus($tokenStatus) { $this->tokenStatus = $tokenStatus; } /** * @return string */ public function getTokenStatus() { return $this->tokenStatus; } /** * @param string */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GitRemoteSettings::class, 'Google_Service_Dataform_GitRemoteSettings');