clientId = $clientId; } /** * @return string */ public function getClientId() { return $this->clientId; } /** * Optional. Client secret associated with the client id. * * @param string $clientSecret */ public function setClientSecret($clientSecret) { $this->clientSecret = $clientSecret; } /** * @return string */ public function getClientSecret() { return $this->clientSecret; } /** * Optional. Optional Microsoft Fabric service endpoint. Default value: * https://onelake.dfs.fabric.microsoft.com * * @param string $endpoint */ public function setEndpoint($endpoint) { $this->endpoint = $endpoint; } /** * @return string */ public function getEndpoint() { return $this->endpoint; } /** * Optional. The technology type of MicrosoftFabricConnection. * * @param string $technologyType */ public function setTechnologyType($technologyType) { $this->technologyType = $technologyType; } /** * @return string */ public function getTechnologyType() { return $this->technologyType; } /** * Optional. Azure tenant ID of the application. * * @param string $tenantId */ public function setTenantId($tenantId) { $this->tenantId = $tenantId; } /** * @return string */ public function getTenantId() { return $this->tenantId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoldengateMicrosoftFabricConnectionProperties::class, 'Google_Service_OracleDatabase_GoldengateMicrosoftFabricConnectionProperties');